Search in sources :

Example 51 with EUDataGridResult

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

the class DeviceTypeServiceImpl method getList.

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

Example 52 with EUDataGridResult

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

the class FCountCheckServiceImpl method searchFCountCheckByFCountCheckId.

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

Example 53 with EUDataGridResult

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

the class FCountCheckServiceImpl method getList.

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

Example 54 with EUDataGridResult

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

the class CustomServiceImpl method searchCustomByCustomId.

@Override
public EUDataGridResult searchCustomByCustomId(int page, int rows, String customId) throws Exception {
    // 分页处理
    PageHelper.startPage(page, rows);
    List<Custom> list = customMapper.searchCustomByCustomId(customId);
    // 创建一个返回值对象
    EUDataGridResult result = new EUDataGridResult();
    result.setRows(list);
    // 取记录总条数
    PageInfo<Custom> 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) Custom(com.megagao.production.ssm.domain.Custom)

Example 55 with EUDataGridResult

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

the class CustomServiceImpl method searchCustomByCustomName.

@Override
public EUDataGridResult searchCustomByCustomName(int page, int rows, String customName) throws Exception {
    // 分页处理
    PageHelper.startPage(page, rows);
    List<Custom> list = customMapper.searchCustomByCustomName(customName);
    // 创建一个返回值对象
    EUDataGridResult result = new EUDataGridResult();
    result.setRows(list);
    // 取记录总条数
    PageInfo<Custom> 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) Custom(com.megagao.production.ssm.domain.Custom)

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