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;
}
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;
}
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;
}
Aggregations