Search in sources :

Example 46 with PageInfo

use of com.github.pagehelper.PageInfo in project production_ssm by megagao.

the class MaterialServiceImpl method getList.

@Override
public EUDataGridResult getList(int page, int rows, Material material) throws Exception {
    // 查询列表
    MaterialExample example = new MaterialExample();
    // 分页处理
    PageHelper.startPage(page, rows);
    List<Material> list = materialMapper.selectByExample(example);
    // 创建一个返回值对象
    EUDataGridResult result = new EUDataGridResult();
    result.setRows(list);
    // 取记录总条数
    PageInfo<Material> 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) Material(com.megagao.production.ssm.domain.Material) MaterialExample(com.megagao.production.ssm.domain.MaterialExample)

Example 47 with PageInfo

use of com.github.pagehelper.PageInfo in project production_ssm by megagao.

the class MaterialServiceImpl method searchMaterialByMaterialType.

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

Example 48 with PageInfo

use of com.github.pagehelper.PageInfo in project production_ssm by megagao.

the class OrderServiceImpl method searchOrderByProductName.

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

Example 49 with PageInfo

use of com.github.pagehelper.PageInfo in project production_ssm by megagao.

the class PMeasureCheckServiceImpl method getList.

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

Example 50 with PageInfo

use of com.github.pagehelper.PageInfo in project production_ssm by megagao.

the class PMeasureCheckServiceImpl method searchPMeasureCheckByPMeasureCheckId.

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

Aggregations

PageInfo (com.github.pagehelper.PageInfo)273 PostMapping (org.springframework.web.bind.annotation.PostMapping)96 EUDataGridResult (com.megagao.production.ssm.domain.customize.EUDataGridResult)90 Test (org.junit.Test)21 UserMapper (com.github.pagehelper.mapper.UserMapper)17 User (com.github.pagehelper.model.User)17 SqlSession (org.apache.ibatis.session.SqlSession)17 ApiOperation (io.swagger.annotations.ApiOperation)14 TaskRecordDetail (com.eservice.api.model.task_record.TaskRecordDetail)11 Condition (tk.mybatis.mapper.entity.Condition)9 DataTablesResult (cn.exrick.common.pojo.DataTablesResult)7 ArrayList (java.util.ArrayList)7 Criteria (tk.mybatis.mapper.entity.Example.Criteria)6 TaskRecord (com.eservice.api.model.task_record.TaskRecord)4 Product (com.megagao.production.ssm.domain.Product)4 Task (com.megagao.production.ssm.domain.Task)4 ManufactureVO (com.megagao.production.ssm.domain.vo.ManufactureVO)4 WorkVO (com.megagao.production.ssm.domain.vo.WorkVO)4 MachineInfo (com.eservice.api.model.machine.MachineInfo)3 User (com.eservice.api.model.user.User)3