use of com.megagao.production.ssm.domain.MaterialExample 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;
}
Aggregations