Search in sources :

Example 66 with EUDataGridResult

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

the class MeasureServiceImpl method getList.

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

Example 67 with EUDataGridResult

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

the class MeasureServiceImpl method searchFMeasureCheckByFMeasureCheckId.

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

Example 68 with EUDataGridResult

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

the class PCountCheckServiceImpl method getList.

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

Example 69 with EUDataGridResult

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

the class PermissionServiceImpl method getList.

@Override
public EUDataGridResult getList(int page, int rows, SysRolePermission sysRolePermission) throws Exception {
    // 查询列表
    SysRolePermissionExample example = new SysRolePermissionExample();
    // 分页处理
    PageHelper.startPage(page, rows);
    List<SysRolePermission> list = sysRolePermissionMapper.selectByExample(example);
    // 创建一个返回值对象
    EUDataGridResult result = new EUDataGridResult();
    result.setRows(list);
    // 取记录总条数
    PageInfo<SysRolePermission> pageInfo = new PageInfo<>(list);
    result.setTotal(pageInfo.getTotal());
    return result;
}
Also used : SysRolePermission(com.megagao.production.ssm.domain.authority.SysRolePermission) PageInfo(com.github.pagehelper.PageInfo) EUDataGridResult(com.megagao.production.ssm.domain.customize.EUDataGridResult) SysRolePermissionExample(com.megagao.production.ssm.domain.authority.SysRolePermissionExample)

Example 70 with EUDataGridResult

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

the class MaterialConsumeServiceImpl method getList.

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

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