Search in sources :

Example 1 with CustomExample

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

the class CustomServiceImpl method getList.

@Override
public EUDataGridResult getList(int page, int rows, Custom custom) throws Exception {
    // 查询客户列表
    CustomExample example = new CustomExample();
    // 分页处理
    PageHelper.startPage(page, rows);
    List<Custom> list = customMapper.selectByExample(example);
    // 创建一个返回值对象
    EUDataGridResult result = new EUDataGridResult();
    result.setRows(list);
    // 取记录总条数
    PageInfo<Custom> pageInfo = new PageInfo<>(list);
    result.setTotal(pageInfo.getTotal());
    return result;
}
Also used : CustomExample(com.megagao.production.ssm.domain.CustomExample) PageInfo(com.github.pagehelper.PageInfo) EUDataGridResult(com.megagao.production.ssm.domain.customize.EUDataGridResult) Custom(com.megagao.production.ssm.domain.Custom)

Aggregations

PageInfo (com.github.pagehelper.PageInfo)1 Custom (com.megagao.production.ssm.domain.Custom)1 CustomExample (com.megagao.production.ssm.domain.CustomExample)1 EUDataGridResult (com.megagao.production.ssm.domain.customize.EUDataGridResult)1