use of com.megagao.production.ssm.domain.vo.TechnologyRequirementVO in project production_ssm by megagao.
the class TechnologyRequirementServiceImpl method getList.
@Override
public EUDataGridResult getList(int page, int rows, TechnologyRequirement technologyRequirement) throws Exception {
System.out.println("fff");
// 分页处理
PageHelper.startPage(page, rows);
List<TechnologyRequirementVO> list = technologyRequirementMapper.find(technologyRequirement);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<TechnologyRequirementVO> pageInfo = new PageInfo<>(list);
result.setTotal(pageInfo.getTotal());
return result;
}
use of com.megagao.production.ssm.domain.vo.TechnologyRequirementVO in project production_ssm by megagao.
the class TechnologyRequirementServiceImpl method searchTechnologyRequirementByTechnologyRequirementId.
@Override
public EUDataGridResult searchTechnologyRequirementByTechnologyRequirementId(Integer page, Integer rows, String technologyRequirementId) throws Exception {
// 分页处理
PageHelper.startPage(page, rows);
List<TechnologyRequirementVO> list = technologyRequirementMapper.searchTechnologyRequirementByTechnologyRequirementId(technologyRequirementId);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<TechnologyRequirementVO> pageInfo = new PageInfo<>(list);
result.setTotal(pageInfo.getTotal());
return result;
}
use of com.megagao.production.ssm.domain.vo.TechnologyRequirementVO in project production_ssm by megagao.
the class TechnologyRequirementServiceImpl method searchTechnologyRequirementByTechnologyName.
@Override
public EUDataGridResult searchTechnologyRequirementByTechnologyName(Integer page, Integer rows, String technologyName) throws Exception {
// 分页处理
PageHelper.startPage(page, rows);
List<TechnologyRequirementVO> list = technologyRequirementMapper.searchTechnologyRequirementByTechnologyName(technologyName);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<TechnologyRequirementVO> pageInfo = new PageInfo<>(list);
result.setTotal(pageInfo.getTotal());
return result;
}
Aggregations