PageHelper和PageInfo的使用

brave_zhao發表於2018-04-09

Controller寫法

import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;


service元件內程式碼


    //[安全管理-許可權管理]獲得列表資料
    @Override
    public List<Resource> queryResourceList(Resource resource) throws Exception {
        return resourceMapper.queryResourceList(resource);
    }


相關文章