use of com.github.pagehelper.PageInfo in project production_ssm by megagao.
the class MaterialServiceImpl method getList.
@Override
public EUDataGridResult getList(int page, int rows, Material material) throws Exception {
// 查询列表
MaterialExample example = new MaterialExample();
// 分页处理
PageHelper.startPage(page, rows);
List<Material> list = materialMapper.selectByExample(example);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<Material> pageInfo = new PageInfo<>(list);
result.setTotal(pageInfo.getTotal());
return result;
}
use of com.github.pagehelper.PageInfo in project production_ssm by megagao.
the class MaterialServiceImpl method searchMaterialByMaterialType.
@Override
public EUDataGridResult searchMaterialByMaterialType(Integer page, Integer rows, String materialType) throws Exception {
// 分页处理
PageHelper.startPage(page, rows);
List<Material> list = materialMapper.searchMaterialByMaterialType(materialType);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<Material> pageInfo = new PageInfo<>(list);
result.setTotal(pageInfo.getTotal());
return result;
}
use of com.github.pagehelper.PageInfo in project production_ssm by megagao.
the class OrderServiceImpl method searchOrderByProductName.
@Override
public EUDataGridResult searchOrderByProductName(int page, int rows, String productName) throws Exception {
// 分页处理
PageHelper.startPage(page, rows);
List<COrderVO> list = cOrderMapper.searchOrderByProductName(productName);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<COrderVO> pageInfo = new PageInfo<>(list);
result.setTotal(pageInfo.getTotal());
return result;
}
use of com.github.pagehelper.PageInfo in project production_ssm by megagao.
the class PMeasureCheckServiceImpl method getList.
@Override
public EUDataGridResult getList(int page, int rows, ProcessMeasureCheck processMeasureCheck) throws Exception {
// 分页处理
PageHelper.startPage(page, rows);
List<ProcessMeasureCheckVO> list = processMeasureCheckMapper.find(processMeasureCheck);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<ProcessMeasureCheckVO> pageInfo = new PageInfo<>(list);
result.setTotal(pageInfo.getTotal());
return result;
}
use of com.github.pagehelper.PageInfo in project production_ssm by megagao.
the class PMeasureCheckServiceImpl method searchPMeasureCheckByPMeasureCheckId.
@Override
public EUDataGridResult searchPMeasureCheckByPMeasureCheckId(int page, int rows, String pMeasureCheckId) throws Exception {
// 分页处理
PageHelper.startPage(page, rows);
List<ProcessMeasureCheckVO> list = processMeasureCheckMapper.searchPMeasureCheckByPMeasureCheckId(pMeasureCheckId);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<ProcessMeasureCheckVO> pageInfo = new PageInfo<>(list);
result.setTotal(pageInfo.getTotal());
return result;
}
Aggregations