Search in sources :

Example 61 with EUDataGridResult

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

the class UserServiceImpl method searchUserByUserName.

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

Example 62 with EUDataGridResult

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

the class TechnologyRequirementServiceImpl method searchTechnologyRequirementByTechnologyRequirementId.

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

Example 63 with EUDataGridResult

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

the class TechnologyRequirementServiceImpl method searchTechnologyRequirementByTechnologyName.

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

Example 64 with EUDataGridResult

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

the class UnqualifyServiceImpl method searchUnqualifyByUnqualifyId.

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

Example 65 with EUDataGridResult

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

the class WorkServiceImpl method getList.

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

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