您好,登錄后才能下訂單哦!
本篇內容主要講解“如何編寫MybatisPlus實現分頁查詢和動態SQL查詢”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“如何編寫MybatisPlus實現分頁查詢和動態SQL查詢”吧!
一、描述
二、實現方式
三、 總結
實現下圖中的功能,分析一下該功能,既有分頁查詢又有根據計劃狀態、開始時間、公司名稱進行動態查詢。
Controller層
/** * @param userId 專員的id * @param planState 計劃狀態 * @param planStartTime 計劃開始時間 * @param emtCode 公司名稱-分身id * @return java.util.List<com.hc360.crm.entity.po.PlanCustomer> * @Author zhaoxiaodong * @Description 高級查詢-根據計劃狀態、計劃的時間、公司名稱查詢 * @Date 9:04 2021/9/29 */ @PostMapping("/selectPlanByStateTimeCompany") public Page<CrmCustomerPlan> selectPlanByStateTimeCompany(@RequestParam(required = false,defaultValue = "1")int limit, @RequestParam(required = false,defaultValue = "1")int page, @RequestParam(required = true) Long userId,@RequestParam(required = false,defaultValue = "0") int planState,@RequestParam(required = false) String planStartTime,@RequestParam(required = false) Long emtCode) { //獲取該專員下所有狀態為未開始的計劃 List<CrmCustomerPlan> myPlanList = crmCustomerPlanService.selectNoStartPlan(userId); if (StringUtil.isNotEmpty(planStartTime)){ //判斷計劃的開始時間和當前時間 DateTimeFormatter dtf = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"); LocalDateTime planTime = LocalDateTime.parse(planStartTime, dtf); //存放已逾期的計劃 List<CrmCustomerPlan> overDuePlan = new ArrayList<>(); for (CrmCustomerPlan customerPlan : myPlanList) { if (LocalDateTime.now().isAfter(planTime)) { //當前時間在計劃時間之后,說明過了計劃時間,這時候我們要將它的狀態改為已逾期 customerPlan.setPlanState(PlanStateEnum.OVERDUE.getCode()); overDuePlan.add(customerPlan); } } if (overDuePlan.size() > 0) { //遍歷完之后,我們就可以對數據進行更改了 crmCustomerPlanService.updateBatchById(overDuePlan); } } //接下來,就是對數據進行查詢 return crmCustomerPlanService.selectPlanByStateTimeCompany(limit,page,userId, planState, planStartTime, emtCode); }
在Controller中有limit、page。limit為每頁限制的數量、page為第幾頁
Service層
/** * @param userId * @return java.util.List<com.hc360.crm.entity.po.PlanCustomer> * @Author zhaoxiaodong * @Description 高級查詢-根據計劃狀態、時間、公司名稱查詢 * @Date 9:06 2021/9/29 */ @Override public Page<CrmCustomerPlan> selectPlanByStateTimeCompany(int limit,int page,Long userId, int planState, String planStartTime, Long emtCode) { Page<CrmCustomerPlan> pagelimit= new Page(page,limit); QueryWrapper<CrmCustomerPlan> crmCustomerPlanQueryWrapper = new QueryWrapper<>(); crmCustomerPlanQueryWrapper.eq("create_user_id", userId); if (planState!=0){ crmCustomerPlanQueryWrapper.eq("plan_state", planState); } if (StringUtil.isNotEmpty(planStartTime)){ crmCustomerPlanQueryWrapper.eq("plan_start_time", planStartTime); } if (StringUtil.isNotEmpty(String.valueOf(emtCode))){ crmCustomerPlanQueryWrapper.eq("emt_code", emtCode); } return crmCustomerPlanMapper.selectPage(pagelimit,crmCustomerPlanQueryWrapper); }
在Service層中,可以通過if和QueryWrapper實現動態SQL的查詢。
分頁,用到了Page對象,一定要是Mybatis的。然后調用selectPage,將對象和查詢條件傳入進去即可。
MybatisPlus是真的好用,省了我們寫很多的SQL語句 以及配置信息
Mybatis的分頁配置信息
/** * 新的分頁插件 */ @Bean public MybatisPlusInterceptor mybatisPlusInterceptor() { MybatisPlusInterceptor mybatisPlusInterceptor = new MybatisPlusInterceptor(); mybatisPlusInterceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL)); return mybatisPlusInterceptor; }
到此,相信大家對“如何編寫MybatisPlus實現分頁查詢和動態SQL查詢”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。