use of com.github.pagehelper.PageInfo in project production_ssm by megagao.
the class DeviceTypeServiceImpl method searchDeviceTypeByDeviceTypeId.
@Override
public EUDataGridResult searchDeviceTypeByDeviceTypeId(Integer page, Integer rows, String deviceTypeId) {
// 分页处理
PageHelper.startPage(page, rows);
List<DeviceType> list = deviceTypeMapper.searchDeviceTypeByDeviceTypeId(deviceTypeId);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<DeviceType> pageInfo = new PageInfo<>(list);
result.setTotal(pageInfo.getTotal());
return result;
}
use of com.github.pagehelper.PageInfo in project production_ssm by megagao.
the class DeviceTypeServiceImpl method getList.
@Override
public EUDataGridResult getList(int page, int rows, DeviceType deviceType) throws Exception {
// 分页处理
PageHelper.startPage(page, rows);
List<DeviceType> list = deviceTypeMapper.find(deviceType);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<DeviceType> pageInfo = new PageInfo<>(list);
result.setTotal(pageInfo.getTotal());
return result;
}
use of com.github.pagehelper.PageInfo in project production_ssm by megagao.
the class FCountCheckServiceImpl method searchFCountCheckByFCountCheckId.
@Override
public EUDataGridResult searchFCountCheckByFCountCheckId(int page, int rows, String fCountCheckId) throws Exception {
// 分页处理
PageHelper.startPage(page, rows);
List<FinalCountCheckVO> list = finalCountCheckMapper.searchFCountCheckByFCountCheckId(fCountCheckId);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<FinalCountCheckVO> pageInfo = new PageInfo<>(list);
result.setTotal(pageInfo.getTotal());
return result;
}
use of com.github.pagehelper.PageInfo in project production_ssm by megagao.
the class FCountCheckServiceImpl method getList.
@Override
public EUDataGridResult getList(Integer page, Integer rows, FinalCountCheck finalCountCheck) throws Exception {
PageHelper.startPage(page, rows);
List<FinalCountCheckVO> list = finalCountCheckMapper.find(finalCountCheck);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<FinalCountCheckVO> pageInfo = new PageInfo<>(list);
result.setTotal(pageInfo.getTotal());
return result;
}
use of com.github.pagehelper.PageInfo in project production_ssm by megagao.
the class CustomServiceImpl method searchCustomByCustomId.
@Override
public EUDataGridResult searchCustomByCustomId(int page, int rows, String customId) throws Exception {
// 分页处理
PageHelper.startPage(page, rows);
List<Custom> list = customMapper.searchCustomByCustomId(customId);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<Custom> pageInfo = new PageInfo<>(list);
result.setTotal(pageInfo.getTotal());
return result;
}
Aggregations