Search in sources :

Example 1 with TechnologyPlan

use of com.megagao.production.ssm.domain.TechnologyPlan in project production_ssm by megagao.

the class TechnologyPlanServiceImpl method searchTechnologyPlanByTechnologyPlanId.

@Override
public EUDataGridResult searchTechnologyPlanByTechnologyPlanId(Integer page, Integer rows, String technologyPlanId) throws Exception {
    // 分页处理
    PageHelper.startPage(page, rows);
    List<TechnologyPlan> list = technologyPlanMapper.searchTechnologyPlanByTechnologyPlanId(technologyPlanId);
    // 创建一个返回值对象
    EUDataGridResult result = new EUDataGridResult();
    result.setRows(list);
    // 取记录总条数
    PageInfo<TechnologyPlan> pageInfo = new PageInfo<>(list);
    result.setTotal(pageInfo.getTotal());
    return result;
}
Also used : PageInfo(com.github.pagehelper.PageInfo) TechnologyPlan(com.megagao.production.ssm.domain.TechnologyPlan) EUDataGridResult(com.megagao.production.ssm.domain.customize.EUDataGridResult)

Example 2 with TechnologyPlan

use of com.megagao.production.ssm.domain.TechnologyPlan in project production_ssm by megagao.

the class TechnologyPlanServiceImpl method getList.

@Override
public EUDataGridResult getList(int page, int rows, TechnologyPlan technologyPlan) throws Exception {
    // 分页处理
    PageHelper.startPage(page, rows);
    List<TechnologyPlan> list = technologyPlanMapper.find(technologyPlan);
    // 创建一个返回值对象
    EUDataGridResult result = new EUDataGridResult();
    result.setRows(list);
    // 取记录总条数
    PageInfo<TechnologyPlan> pageInfo = new PageInfo<>(list);
    result.setTotal(pageInfo.getTotal());
    return result;
}
Also used : PageInfo(com.github.pagehelper.PageInfo) TechnologyPlan(com.megagao.production.ssm.domain.TechnologyPlan) EUDataGridResult(com.megagao.production.ssm.domain.customize.EUDataGridResult)

Example 3 with TechnologyPlan

use of com.megagao.production.ssm.domain.TechnologyPlan in project production_ssm by megagao.

the class TechnologyPlanServiceImpl method searchTechnologyPlanByTechnologyName.

@Override
public EUDataGridResult searchTechnologyPlanByTechnologyName(Integer page, Integer rows, String technologyName) throws Exception {
    // 分页处理
    PageHelper.startPage(page, rows);
    List<TechnologyPlan> list = technologyPlanMapper.searchTechnologyPlanByTechnologyName(technologyName);
    // 创建一个返回值对象
    EUDataGridResult result = new EUDataGridResult();
    result.setRows(list);
    // 取记录总条数
    PageInfo<TechnologyPlan> pageInfo = new PageInfo<>(list);
    result.setTotal(pageInfo.getTotal());
    return result;
}
Also used : PageInfo(com.github.pagehelper.PageInfo) TechnologyPlan(com.megagao.production.ssm.domain.TechnologyPlan) EUDataGridResult(com.megagao.production.ssm.domain.customize.EUDataGridResult)

Aggregations

PageInfo (com.github.pagehelper.PageInfo)3 TechnologyPlan (com.megagao.production.ssm.domain.TechnologyPlan)3 EUDataGridResult (com.megagao.production.ssm.domain.customize.EUDataGridResult)3