use of com.megagao.production.ssm.domain.customize.EUDataGridResult 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;
}
use of com.megagao.production.ssm.domain.customize.EUDataGridResult 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;
}
use of com.megagao.production.ssm.domain.customize.EUDataGridResult in project production_ssm by megagao.
the class DepartmentServiceImpl method getList.
@Override
public EUDataGridResult getList(int page, int rows, Department department) throws Exception {
// 查询部门列表
DepartmentExample example = new DepartmentExample();
// 分页处理
PageHelper.startPage(page, rows);
List<Department> list = departmentMapper.selectByExample(example);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<Department> 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 DeviceFaultServiceImpl method searchDeviceFaultByDeviceName.
@Override
public EUDataGridResult searchDeviceFaultByDeviceName(Integer page, Integer rows, String deviceName) {
// 分页处理
PageHelper.startPage(page, rows);
List<DeviceFault> list = deviceFaultMapper.searchDeviceFaultByDeviceName(deviceName);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<DeviceFault> 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 CustomServiceImpl method getList.
@Override
public EUDataGridResult getList(int page, int rows, Custom custom) throws Exception {
// 查询客户列表
CustomExample example = new CustomExample();
// 分页处理
PageHelper.startPage(page, rows);
List<Custom> list = customMapper.selectByExample(example);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<Custom> pageInfo = new PageInfo<>(list);
result.setTotal(pageInfo.getTotal());
return result;
}
Aggregations