91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何編寫MybatisPlus實現分頁查詢和動態SQL查詢

發布時間:2021-09-30 14:43:14 來源:億速云 閱讀:211 作者:iii 欄目:開發技術

本篇內容主要講解“如何編寫MybatisPlus實現分頁查詢和動態SQL查詢”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“如何編寫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查詢”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

安西县| 兴义市| 河曲县| 衢州市| 秦安县| 米泉市| 黄骅市| 莫力| 蒙山县| 成都市| 建德市| 吉隆县| 咸宁市| 沈丘县| 额敏县| 清远市| 家居| 佛山市| 全南县| 曲靖市| 清新县| 江川县| 碌曲县| 泰来县| 临朐县| 鄂托克前旗| 英超| 科技| 连山| 仁布县| 台中县| 吉隆县| 贞丰县| 六安市| 达拉特旗| 唐海县| 阳西县| 卢湾区| 临澧县| 扎兰屯市| 灵山县|