use of com.megagao.production.ssm.domain.Material 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.megagao.production.ssm.domain.Material 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.megagao.production.ssm.domain.Material in project production_ssm by megagao.
the class MaterialServiceImpl method searchMaterialByMaterialId.
@Override
public EUDataGridResult searchMaterialByMaterialId(int page, int rows, String materialId) throws Exception {
// 分页处理
PageHelper.startPage(page, rows);
List<Material> list = materialMapper.searchMaterialByMaterialId(materialId);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<Material> pageInfo = new PageInfo<>(list);
result.setTotal(pageInfo.getTotal());
return result;
}
Aggregations