use of com.megagao.production.ssm.domain.customize.EUDataGridResult in project production_ssm by megagao.
the class EmployeeServiceImpl method searchEmployeeByDepartmentName.
@Override
public EUDataGridResult searchEmployeeByDepartmentName(Integer page, Integer rows, String departmentName) throws Exception {
// 分页处理
PageHelper.startPage(page, rows);
List<EmployeeVO> list = employeeMapper.searchEmployeeByDepartmentName(departmentName);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<EmployeeVO> 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 ManufactureServiceImpl method getList.
@Override
public EUDataGridResult getList(int page, int rows) throws Exception {
// 分页处理
PageHelper.startPage(page, rows);
List<ManufactureVO> list = manufactureMapper.find();
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<ManufactureVO> 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 ManufactureServiceImpl method searchManufactureByManufactureTechnologyName.
@Override
public EUDataGridResult searchManufactureByManufactureTechnologyName(Integer page, Integer rows, String manufactureTechnologyName) throws Exception {
// 分页处理
PageHelper.startPage(page, rows);
List<ManufactureVO> list = manufactureMapper.searchManufactureByManufactureTechnologyName(manufactureTechnologyName);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<ManufactureVO> 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 TaskServiceImpl method searchTaskByTaskWorkId.
@Override
public EUDataGridResult searchTaskByTaskWorkId(Integer page, Integer rows, String taskWorkId) throws Exception {
// 分页处理
PageHelper.startPage(page, rows);
List<Task> list = taskMapper.searchTaskByTaskWorkId(taskWorkId);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<Task> 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 TaskServiceImpl method searchTaskByTaskId.
@Override
public EUDataGridResult searchTaskByTaskId(Integer page, Integer rows, String taskId) throws Exception {
// 分页处理
PageHelper.startPage(page, rows);
List<Task> list = taskMapper.searchTaskByTaskId(taskId);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<Task> pageInfo = new PageInfo<>(list);
result.setTotal(pageInfo.getTotal());
return result;
}
Aggregations