use of com.megagao.production.ssm.domain.customize.EUDataGridResult in project production_ssm by megagao.
the class ProductServiceImpl method searchProductByProductId.
@Override
public EUDataGridResult searchProductByProductId(int page, int rows, String productId) throws Exception {
// 分页处理
PageHelper.startPage(page, rows);
List<Product> list = productMapper.searchProductByProductId(productId);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<Product> 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 ProductServiceImpl method searchProductByProductName.
@Override
public EUDataGridResult searchProductByProductName(int page, int rows, String productName) throws Exception {
// 分页处理
PageHelper.startPage(page, rows);
List<Product> list = productMapper.searchProductByProductName(productName);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<Product> 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 TechnologyPlanServiceImpl method getList.
@Override
public EUDataGridResult getList(int page, int rows, TechnologyPlan technologyPlan) throws Exception {
// 分页处理
PageHelper.startPage(page, rows);
List<TechnologyPlan> list = technologyPlanMapper.find(technologyPlan);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<TechnologyPlan> 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 TechnologyPlanServiceImpl method searchTechnologyPlanByTechnologyName.
@Override
public EUDataGridResult searchTechnologyPlanByTechnologyName(Integer page, Integer rows, String technologyName) throws Exception {
// 分页处理
PageHelper.startPage(page, rows);
List<TechnologyPlan> list = technologyPlanMapper.searchTechnologyPlanByTechnologyName(technologyName);
// 创建一个返回值对象
EUDataGridResult result = new EUDataGridResult();
result.setRows(list);
// 取记录总条数
PageInfo<TechnologyPlan> 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 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;
}
Aggregations