use of com.megagao.production.ssm.domain.customize.EUDataGridResult in project production_ssm by megagao.
the class UserServiceImpl method searchUserByUserName.
@Override
public EUDataGridResult searchUserByUserName(Integer page, Integer rows, String userName) throws Exception {
// 分页处理
PageHelper.startPage(page, rows);
List<SysUser> list = sysUserMapper.searchUserByUserName(userName);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<SysUser> pageInfo = new PageInfo<>(list);
result.setTotal(pageInfo.getTotal());
return result;
}
use of com.megagao.production.ssm.domain.customize.EUDataGridResult 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.customize.EUDataGridResult 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;
}
use of com.megagao.production.ssm.domain.customize.EUDataGridResult 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;
}
use of com.megagao.production.ssm.domain.customize.EUDataGridResult in project production_ssm by megagao.
the class WorkServiceImpl method getList.
@Override
public EUDataGridResult getList(int page, int rows, WorkVO work) throws Exception {
// 分页处理
PageHelper.startPage(page, rows);
List<WorkVO> list = workMapper.find();
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<WorkVO> pageInfo = new PageInfo<>(list);
result.setTotal(pageInfo.getTotal());
return result;
}
Aggregations