Search in sources :

Example 1 with Process

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

the class ProcessServiceImpl method searchProcessByTechnologyPlanId.

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

Example 2 with Process

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

the class ProcessServiceImpl method getList.

@Override
public EUDataGridResult getList(int page, int rows, Process process) throws Exception {
    // 查询商品列表
    ProcessExample example = new ProcessExample();
    // 分页处理
    PageHelper.startPage(page, rows);
    List<Process> list = processMapper.selectByExample(example);
    // 创建一个返回值对象
    EUDataGridResult result = new EUDataGridResult();
    result.setRows(list);
    // 取记录总条数
    PageInfo<Process> pageInfo = new PageInfo<>(list);
    result.setTotal(pageInfo.getTotal());
    return result;
}
Also used : PageInfo(com.github.pagehelper.PageInfo) ProcessExample(com.megagao.production.ssm.domain.ProcessExample) EUDataGridResult(com.megagao.production.ssm.domain.customize.EUDataGridResult) Process(com.megagao.production.ssm.domain.Process)

Example 3 with Process

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

the class ProcessServiceImpl method searchProcessByProcessId.

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

Aggregations

PageInfo (com.github.pagehelper.PageInfo)3 Process (com.megagao.production.ssm.domain.Process)3 EUDataGridResult (com.megagao.production.ssm.domain.customize.EUDataGridResult)3 ProcessExample (com.megagao.production.ssm.domain.ProcessExample)1