Search in sources :

Example 1 with UnqualifyApplyVO

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

the class UnqualifyServiceImpl method searchUnqualifyByProductName.

@Override
public EUDataGridResult searchUnqualifyByProductName(Integer page, Integer rows, String productName) {
    // 分页处理
    PageHelper.startPage(page, rows);
    List<UnqualifyApplyVO> list = unqualifyApplyMapper.searchUnqualifyByProductName(productName);
    // 创建一个返回值对象
    EUDataGridResult result = new EUDataGridResult();
    result.setRows(list);
    // 取记录总条数
    PageInfo<UnqualifyApplyVO> 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) UnqualifyApplyVO(com.megagao.production.ssm.domain.vo.UnqualifyApplyVO)

Example 2 with UnqualifyApplyVO

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

the class UnqualifyServiceImpl method getList.

@Override
public EUDataGridResult getList(Integer page, Integer rows, UnqualifyApply unqualifyApply) throws Exception {
    PageHelper.startPage(page, rows);
    List<UnqualifyApplyVO> list = unqualifyApplyMapper.find(unqualifyApply);
    // 创建一个返回值对象
    EUDataGridResult result = new EUDataGridResult();
    result.setRows(list);
    // 取记录总条数
    PageInfo<UnqualifyApplyVO> 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) UnqualifyApplyVO(com.megagao.production.ssm.domain.vo.UnqualifyApplyVO)

Example 3 with UnqualifyApplyVO

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

the class UnqualifyServiceImpl method searchUnqualifyByUnqualifyId.

@Override
public EUDataGridResult searchUnqualifyByUnqualifyId(int page, int rows, String unqualifyId) throws Exception {
    // 分页处理
    PageHelper.startPage(page, rows);
    List<UnqualifyApplyVO> list = unqualifyApplyMapper.searchUnqualifyByUnqualifyId(unqualifyId);
    // 创建一个返回值对象
    EUDataGridResult result = new EUDataGridResult();
    result.setRows(list);
    // 取记录总条数
    PageInfo<UnqualifyApplyVO> 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) UnqualifyApplyVO(com.megagao.production.ssm.domain.vo.UnqualifyApplyVO)

Aggregations

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