Search in sources :

Example 1 with Technology

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

the class TechnologyServiceImpl method searchTechnologyByTechnologyName.

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

Example 2 with Technology

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

the class TechnologyServiceImpl method getList.

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

Example 3 with Technology

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

the class TechnologyServiceImpl method searchTechnologyByTechnologyId.

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

Aggregations

PageInfo (com.github.pagehelper.PageInfo)3 Technology (com.megagao.production.ssm.domain.Technology)3 EUDataGridResult (com.megagao.production.ssm.domain.customize.EUDataGridResult)3 TechnologyExample (com.megagao.production.ssm.domain.TechnologyExample)1