Search in sources :

Example 1 with MaterialReceiveVO

use of com.megagao.production.ssm.domain.vo.MaterialReceiveVO in project production_ssm by megagao.

the class MaterialReceiveServiceImpl method searchMaterialReceiveByMaterialId.

@Override
public EUDataGridResult searchMaterialReceiveByMaterialId(int page, int rows, String materialId) throws Exception {
    // 分页处理
    PageHelper.startPage(page, rows);
    List<MaterialReceiveVO> list = materialReceiveMapper.searchMaterialReceiveByMaterialId(materialId);
    // 创建一个返回值对象
    EUDataGridResult result = new EUDataGridResult();
    result.setRows(list);
    // 取记录总条数
    PageInfo<MaterialReceiveVO> pageInfo = new PageInfo<>(list);
    result.setTotal(pageInfo.getTotal());
    return result;
}
Also used : PageInfo(com.github.pagehelper.PageInfo) MaterialReceiveVO(com.megagao.production.ssm.domain.vo.MaterialReceiveVO) EUDataGridResult(com.megagao.production.ssm.domain.customize.EUDataGridResult)

Example 2 with MaterialReceiveVO

use of com.megagao.production.ssm.domain.vo.MaterialReceiveVO in project production_ssm by megagao.

the class MaterialReceiveServiceImpl method searchMaterialReceiveByReceiveId.

@Override
public EUDataGridResult searchMaterialReceiveByReceiveId(int page, int rows, String receiveId) throws Exception {
    // 分页处理
    PageHelper.startPage(page, rows);
    List<MaterialReceiveVO> list = materialReceiveMapper.searchMaterialReceiveByReceiveId(receiveId);
    // 创建一个返回值对象
    EUDataGridResult result = new EUDataGridResult();
    result.setRows(list);
    // 取记录总条数
    PageInfo<MaterialReceiveVO> pageInfo = new PageInfo<>(list);
    result.setTotal(pageInfo.getTotal());
    return result;
}
Also used : PageInfo(com.github.pagehelper.PageInfo) MaterialReceiveVO(com.megagao.production.ssm.domain.vo.MaterialReceiveVO) EUDataGridResult(com.megagao.production.ssm.domain.customize.EUDataGridResult)

Example 3 with MaterialReceiveVO

use of com.megagao.production.ssm.domain.vo.MaterialReceiveVO in project production_ssm by megagao.

the class MaterialReceiveServiceImpl method getList.

@Override
public EUDataGridResult getList(int page, int rows) throws Exception {
    // 分页处理
    PageHelper.startPage(page, rows);
    List<MaterialReceiveVO> list = materialReceiveMapper.find();
    // 创建一个返回值对象
    EUDataGridResult result = new EUDataGridResult();
    result.setRows(list);
    // 取记录总条数
    PageInfo<MaterialReceiveVO> pageInfo = new PageInfo<>(list);
    result.setTotal(pageInfo.getTotal());
    return result;
}
Also used : PageInfo(com.github.pagehelper.PageInfo) MaterialReceiveVO(com.megagao.production.ssm.domain.vo.MaterialReceiveVO) EUDataGridResult(com.megagao.production.ssm.domain.customize.EUDataGridResult)

Aggregations

PageInfo (com.github.pagehelper.PageInfo)3 EUDataGridResult (com.megagao.production.ssm.domain.customize.EUDataGridResult)3 MaterialReceiveVO (com.megagao.production.ssm.domain.vo.MaterialReceiveVO)3