Search in sources :

Example 1 with DeviceFaultVO

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

the class DeviceFaultServiceImpl method getList.

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

Aggregations

PageInfo (com.github.pagehelper.PageInfo)1 EUDataGridResult (com.megagao.production.ssm.domain.customize.EUDataGridResult)1 DeviceFaultVO (com.megagao.production.ssm.domain.vo.DeviceFaultVO)1