Search in sources :

Example 1 with DeviceMaintain

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

the class DeviceMaintainServiceImpl method getList.

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

Example 2 with DeviceMaintain

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

the class DeviceMaintainServiceImpl method searchDeviceMaintainByDeviceMaintainId.

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

Example 3 with DeviceMaintain

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

the class DeviceMaintainServiceImpl method searchDeviceMaintainByDeviceFaultId.

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

Aggregations

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