Search in sources :

Example 1 with Task

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

the class TaskServiceImpl method searchTaskByTaskWorkId.

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

Example 2 with Task

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

the class TaskServiceImpl method searchTaskByTaskId.

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

Example 3 with Task

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

the class TaskServiceImpl method searchTaskByTaskManufactureSn.

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

Example 4 with Task

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

the class TaskServiceImpl method getList.

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

Aggregations

PageInfo (com.github.pagehelper.PageInfo)4 Task (com.megagao.production.ssm.domain.Task)4 EUDataGridResult (com.megagao.production.ssm.domain.customize.EUDataGridResult)4