use of com.megagao.production.ssm.domain.customize.EUDataGridResult in project production_ssm by megagao.
the class RoleServiceImpl method searchRoleByRoleId.
@Override
public EUDataGridResult searchRoleByRoleId(Integer page, Integer rows, String roleId) throws Exception {
// 分页处理
PageHelper.startPage(page, rows);
List<RoleVO> list = sysRoleMapper.searchRoleByRoleId(roleId);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<RoleVO> pageInfo = new PageInfo<>(list);
result.setTotal(pageInfo.getTotal());
return result;
}
use of com.megagao.production.ssm.domain.customize.EUDataGridResult in project production_ssm by megagao.
the class DeviceCheckServiceImpl method searchDeviceCheckByDeviceName.
@Override
public EUDataGridResult searchDeviceCheckByDeviceName(Integer page, Integer rows, String deviceName) {
// 分页处理
PageHelper.startPage(page, rows);
List<DeviceCheck> list = deviceCheckMapper.searchDeviceCheckByDeviceName(deviceName);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<DeviceCheck> pageInfo = new PageInfo<>(list);
result.setTotal(pageInfo.getTotal());
return result;
}
use of com.megagao.production.ssm.domain.customize.EUDataGridResult in project production_ssm by megagao.
the class DeviceMaintainServiceImpl method searchDeviceMaintainByDeviceFaultId.
@Override
public EUDataGridResult searchDeviceMaintainByDeviceFaultId(Integer page, Integer rows, String deviceFaultId) {
// 分页处理
PageHelper.startPage(page, rows);
List<DeviceMaintain> list = deviceMaintainMapper.searchDeviceMaintainByDeviceFaultId(deviceFaultId);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<DeviceMaintain> pageInfo = new PageInfo<>(list);
result.setTotal(pageInfo.getTotal());
return result;
}
use of com.megagao.production.ssm.domain.customize.EUDataGridResult in project production_ssm by megagao.
the class DeviceTypeServiceImpl method searchDeviceTypeByDeviceTypeName.
@Override
public EUDataGridResult searchDeviceTypeByDeviceTypeName(Integer page, Integer rows, String deviceTypeName) {
// 分页处理
PageHelper.startPage(page, rows);
List<DeviceType> list = deviceTypeMapper.searchDeviceTypeByDeviceTypeName(deviceTypeName);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<DeviceType> pageInfo = new PageInfo<>(list);
result.setTotal(pageInfo.getTotal());
return result;
}
use of com.megagao.production.ssm.domain.customize.EUDataGridResult in project production_ssm by megagao.
the class FCountCheckServiceImpl method searchFCountCheckByOrderId.
@Override
public EUDataGridResult searchFCountCheckByOrderId(Integer page, Integer rows, String orderId) throws Exception {
// 分页处理
PageHelper.startPage(page, rows);
List<FinalCountCheckVO> list = finalCountCheckMapper.searchFCountCheckByOrderId(orderId);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<FinalCountCheckVO> pageInfo = new PageInfo<>(list);
result.setTotal(pageInfo.getTotal());
return result;
}
Aggregations