Search in sources :

Example 1 with WorkVO

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

the class WorkServiceImpl method searchWorkByWorkDevice.

@Override
public EUDataGridResult searchWorkByWorkDevice(Integer page, Integer rows, String workDevice) throws Exception {
    // 分页处理
    PageHelper.startPage(page, rows);
    List<WorkVO> list = workMapper.searchWorkByWorkDevice(workDevice);
    // 创建一个返回值对象
    EUDataGridResult result = new EUDataGridResult();
    result.setRows(list);
    // 取记录总条数
    PageInfo<WorkVO> 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) WorkVO(com.megagao.production.ssm.domain.vo.WorkVO)

Example 2 with WorkVO

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

the class WorkServiceImpl method searchWorkByWorkId.

@Override
public EUDataGridResult searchWorkByWorkId(Integer page, Integer rows, String workId) throws Exception {
    // 分页处理
    PageHelper.startPage(page, rows);
    List<WorkVO> list = workMapper.searchWorkByWorkId(workId);
    // 创建一个返回值对象
    EUDataGridResult result = new EUDataGridResult();
    result.setRows(list);
    // 取记录总条数
    PageInfo<WorkVO> 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) WorkVO(com.megagao.production.ssm.domain.vo.WorkVO)

Example 3 with WorkVO

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

the class WorkServiceImpl method searchWorkByWorkProcess.

@Override
public EUDataGridResult searchWorkByWorkProcess(Integer page, Integer rows, String workProcess) throws Exception {
    // 分页处理
    PageHelper.startPage(page, rows);
    List<WorkVO> list = workMapper.searchWorkByWorkProcess(workProcess);
    // 创建一个返回值对象
    EUDataGridResult result = new EUDataGridResult();
    result.setRows(list);
    // 取记录总条数
    PageInfo<WorkVO> 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) WorkVO(com.megagao.production.ssm.domain.vo.WorkVO)

Example 4 with WorkVO

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

the class WorkServiceImpl method searchWorkByWorkProduct.

@Override
public EUDataGridResult searchWorkByWorkProduct(Integer page, Integer rows, String workProduct) throws Exception {
    // 分页处理
    PageHelper.startPage(page, rows);
    List<WorkVO> list = workMapper.searchWorkByWorkProduct(workProduct);
    // 创建一个返回值对象
    EUDataGridResult result = new EUDataGridResult();
    result.setRows(list);
    // 取记录总条数
    PageInfo<WorkVO> 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) WorkVO(com.megagao.production.ssm.domain.vo.WorkVO)

Example 5 with WorkVO

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

the class WorkServiceImpl method getList.

@Override
public EUDataGridResult getList(int page, int rows, WorkVO work) throws Exception {
    // 分页处理
    PageHelper.startPage(page, rows);
    List<WorkVO> list = workMapper.find();
    // 创建一个返回值对象
    EUDataGridResult result = new EUDataGridResult();
    result.setRows(list);
    // 取记录总条数
    PageInfo<WorkVO> 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) WorkVO(com.megagao.production.ssm.domain.vo.WorkVO)

Aggregations

PageInfo (com.github.pagehelper.PageInfo)5 EUDataGridResult (com.megagao.production.ssm.domain.customize.EUDataGridResult)5 WorkVO (com.megagao.production.ssm.domain.vo.WorkVO)5