use of com.megagao.production.ssm.domain.customize.EUDataGridResult 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;
}
use of com.megagao.production.ssm.domain.customize.EUDataGridResult 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;
}
use of com.megagao.production.ssm.domain.customize.EUDataGridResult in project production_ssm by megagao.
the class UserServiceImpl method getList.
@Override
public EUDataGridResult getList(int page, int rows, SysUser sysUser) throws Exception {
// 分页处理
PageHelper.startPage(page, rows);
List<SysUser> list = sysUserMapper.find(sysUser);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<SysUser> 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 UserServiceImpl method searchUserByUserId.
@Override
public EUDataGridResult searchUserByUserId(Integer page, Integer rows, String userId) throws Exception {
// 分页处理
PageHelper.startPage(page, rows);
List<SysUser> list = sysUserMapper.searchUserByUserId(userId);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<SysUser> 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 UserServiceImpl method searchUserByRoleName.
@Override
public EUDataGridResult searchUserByRoleName(Integer page, Integer rows, String roleName) throws Exception {
// 分页处理
PageHelper.startPage(page, rows);
List<SysUser> list = sysUserMapper.searchUserByRoleName(roleName);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<SysUser> pageInfo = new PageInfo<>(list);
result.setTotal(pageInfo.getTotal());
return result;
}
Aggregations