Search in sources :

Example 1 with Device

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

the class DeviceServiceImpl method searchDeviceByDeviceName.

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

Example 2 with Device

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

the class DeviceServiceImpl method searchDeviceByDeviceTypeName.

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

Example 3 with Device

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

the class DeviceServiceImpl method searchDeviceByDeviceId.

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

Example 4 with Device

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

the class DeviceServiceImpl method getList.

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

Aggregations

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