Search in sources :

Example 1 with Material

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;
}
Also used : PageInfo(com.github.pagehelper.PageInfo) EUDataGridResult(com.megagao.production.ssm.domain.customize.EUDataGridResult) Material(com.megagao.production.ssm.domain.Material) MaterialExample(com.megagao.production.ssm.domain.MaterialExample)

Example 2 with Material

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;
}
Also used : PageInfo(com.github.pagehelper.PageInfo) EUDataGridResult(com.megagao.production.ssm.domain.customize.EUDataGridResult) Material(com.megagao.production.ssm.domain.Material)

Example 3 with Material

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;
}
Also used : PageInfo(com.github.pagehelper.PageInfo) EUDataGridResult(com.megagao.production.ssm.domain.customize.EUDataGridResult) Material(com.megagao.production.ssm.domain.Material)

Aggregations

PageInfo (com.github.pagehelper.PageInfo)3 Material (com.megagao.production.ssm.domain.Material)3 EUDataGridResult (com.megagao.production.ssm.domain.customize.EUDataGridResult)3 MaterialExample (com.megagao.production.ssm.domain.MaterialExample)1