Search in sources :

Example 41 with EUDataGridResult

use of com.megagao.production.ssm.domain.customize.EUDataGridResult in project production_ssm by megagao.

the class TechnologyPlanServiceImpl method searchTechnologyPlanByTechnologyPlanId.

@Override
public EUDataGridResult searchTechnologyPlanByTechnologyPlanId(Integer page, Integer rows, String technologyPlanId) throws Exception {
    // 分页处理
    PageHelper.startPage(page, rows);
    List<TechnologyPlan> list = technologyPlanMapper.searchTechnologyPlanByTechnologyPlanId(technologyPlanId);
    // 创建一个返回值对象
    EUDataGridResult result = new EUDataGridResult();
    result.setRows(list);
    // 取记录总条数
    PageInfo<TechnologyPlan> pageInfo = new PageInfo<>(list);
    result.setTotal(pageInfo.getTotal());
    return result;
}
Also used : PageInfo(com.github.pagehelper.PageInfo) TechnologyPlan(com.megagao.production.ssm.domain.TechnologyPlan) EUDataGridResult(com.megagao.production.ssm.domain.customize.EUDataGridResult)

Example 42 with EUDataGridResult

use of com.megagao.production.ssm.domain.customize.EUDataGridResult in project production_ssm by megagao.

the class DepartmentServiceImpl method searchDepartmentByDepartmentId.

@Override
public EUDataGridResult searchDepartmentByDepartmentId(Integer page, Integer rows, String departmentId) throws Exception {
    // 分页处理
    PageHelper.startPage(page, rows);
    List<Department> list = departmentMapper.searchDepartmentByDepartmentId(departmentId);
    // 创建一个返回值对象
    EUDataGridResult result = new EUDataGridResult();
    result.setRows(list);
    // 取记录总条数
    PageInfo<Department> pageInfo = new PageInfo<>(list);
    result.setTotal(pageInfo.getTotal());
    return result;
}
Also used : Department(com.megagao.production.ssm.domain.Department) PageInfo(com.github.pagehelper.PageInfo) EUDataGridResult(com.megagao.production.ssm.domain.customize.EUDataGridResult)

Example 43 with EUDataGridResult

use of com.megagao.production.ssm.domain.customize.EUDataGridResult in project production_ssm by megagao.

the class DepartmentServiceImpl method searchDepartmentByDepartmentName.

@Override
public EUDataGridResult searchDepartmentByDepartmentName(Integer page, Integer rows, String departmentName) throws Exception {
    // 分页处理
    PageHelper.startPage(page, rows);
    List<Department> list = departmentMapper.searchDepartmentByDepartmentName(departmentName);
    // 创建一个返回值对象
    EUDataGridResult result = new EUDataGridResult();
    result.setRows(list);
    // 取记录总条数
    PageInfo<Department> pageInfo = new PageInfo<>(list);
    result.setTotal(pageInfo.getTotal());
    return result;
}
Also used : Department(com.megagao.production.ssm.domain.Department) PageInfo(com.github.pagehelper.PageInfo) EUDataGridResult(com.megagao.production.ssm.domain.customize.EUDataGridResult)

Example 44 with EUDataGridResult

use of com.megagao.production.ssm.domain.customize.EUDataGridResult in project production_ssm by megagao.

the class DeviceFaultServiceImpl method searchDeviceFaultByDeviceFaultId.

@Override
public EUDataGridResult searchDeviceFaultByDeviceFaultId(Integer page, Integer rows, String deviceFaultId) {
    // 分页处理
    PageHelper.startPage(page, rows);
    List<DeviceFault> list = deviceFaultMapper.searchDeviceFaultByDeviceFaultId(deviceFaultId);
    // 创建一个返回值对象
    EUDataGridResult result = new EUDataGridResult();
    result.setRows(list);
    // 取记录总条数
    PageInfo<DeviceFault> pageInfo = new PageInfo<>(list);
    result.setTotal(pageInfo.getTotal());
    return result;
}
Also used : PageInfo(com.github.pagehelper.PageInfo) DeviceFault(com.megagao.production.ssm.domain.DeviceFault) EUDataGridResult(com.megagao.production.ssm.domain.customize.EUDataGridResult)

Example 45 with EUDataGridResult

use of com.megagao.production.ssm.domain.customize.EUDataGridResult in project production_ssm by megagao.

the class DeviceFaultServiceImpl method getList.

@Override
public EUDataGridResult getList(int page, int rows, DeviceFault deviceFault) throws Exception {
    // 分页处理
    PageHelper.startPage(page, rows);
    List<DeviceFaultVO> list = deviceFaultMapper.find(deviceFault);
    // 创建一个返回值对象
    EUDataGridResult result = new EUDataGridResult();
    result.setRows(list);
    // 取记录总条数
    PageInfo<DeviceFaultVO> pageInfo = new PageInfo<>(list);
    result.setTotal(pageInfo.getTotal());
    return result;
}
Also used : PageInfo(com.github.pagehelper.PageInfo) EUDataGridResult(com.megagao.production.ssm.domain.customize.EUDataGridResult) DeviceFaultVO(com.megagao.production.ssm.domain.vo.DeviceFaultVO)

Aggregations

PageInfo (com.github.pagehelper.PageInfo)90 EUDataGridResult (com.megagao.production.ssm.domain.customize.EUDataGridResult)90 WorkVO (com.megagao.production.ssm.domain.vo.WorkVO)5 Device (com.megagao.production.ssm.domain.Device)4 Product (com.megagao.production.ssm.domain.Product)4 Task (com.megagao.production.ssm.domain.Task)4 SysUser (com.megagao.production.ssm.domain.authority.SysUser)4 COrderVO (com.megagao.production.ssm.domain.vo.COrderVO)4 EmployeeVO (com.megagao.production.ssm.domain.vo.EmployeeVO)4 ManufactureVO (com.megagao.production.ssm.domain.vo.ManufactureVO)4 MaterialConsumeVO (com.megagao.production.ssm.domain.vo.MaterialConsumeVO)4 Custom (com.megagao.production.ssm.domain.Custom)3 Department (com.megagao.production.ssm.domain.Department)3 DeviceCheck (com.megagao.production.ssm.domain.DeviceCheck)3 DeviceMaintain (com.megagao.production.ssm.domain.DeviceMaintain)3 DeviceType (com.megagao.production.ssm.domain.DeviceType)3 Material (com.megagao.production.ssm.domain.Material)3 Process (com.megagao.production.ssm.domain.Process)3 Technology (com.megagao.production.ssm.domain.Technology)3 TechnologyPlan (com.megagao.production.ssm.domain.TechnologyPlan)3