From 70d2a5d0f9c6951b2d4cac954041ed73582ff7eb Mon Sep 17 00:00:00 2001
From: liujie <1793218484@qq.com>
Date: 星期一, 09 六月 2025 11:54:00 +0800
Subject: [PATCH] 6.9新增登录失败冻结逻辑

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComCvtCategoryDAO.java |   26 ++++++++++----------------
 1 files changed, 10 insertions(+), 16 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComCvtCategoryDAO.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComCvtCategoryDAO.java
index 1aefb0f..4f0d403 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComCvtCategoryDAO.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComCvtCategoryDAO.java
@@ -1,30 +1,24 @@
 package com.panzhihua.service_community.dao;
 
+import org.apache.ibatis.annotations.Mapper;
+import org.apache.ibatis.annotations.Param;
+import org.apache.ibatis.annotations.Select;
+
 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 import com.baomidou.mybatisplus.core.metadata.IPage;
 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
 import com.panzhihua.common.model.dtos.community.PageComCvtCategoryDTO;
 import com.panzhihua.common.model.vos.community.ComCvtCategoryVO;
 import com.panzhihua.service_community.model.dos.ComCvtCategoryDO;
-import org.apache.ibatis.annotations.Mapper;
-import org.apache.ibatis.annotations.Param;
-import org.apache.ibatis.annotations.Select;
 
 @Mapper
 public interface ComCvtCategoryDAO extends BaseMapper<ComCvtCategoryDO> {
 
-    @Select("<script> " +
-            "SELECT " +
-            "a.*  " +
-            "FROM " +
-            "com_cvt_category a  " +
-            " <where>" +
-            "<if test='pageComCvtCategoryDTO.name != null and pageComCvtCategoryDTO.name.trim() != &quot;&quot;'>" +
-            " and a.name LIKE concat( #{pageComCvtCategoryDTO.name}, '%' )  " +
-            " </if> " +
-            " </where>" +
-            " order by a.weight desc"+
-            "</script>")
-    IPage<ComCvtCategoryVO> pageComCvtCategory(Page page, @Param("pageComCvtCategoryDTO") PageComCvtCategoryDTO pageComCvtCategoryDTO);
+    @Select("<script> " + "SELECT " + "a.*  " + "FROM " + "com_cvt_category a  " + " <where>"
+        + "<if test='pageComCvtCategoryDTO.name != null and pageComCvtCategoryDTO.name.trim() != &quot;&quot;'>"
+        + " and a.name LIKE concat( #{pageComCvtCategoryDTO.name}, '%' )  " + " </if> " + " </where>"
+        + " order by a.weight desc" + "</script>")
+    IPage<ComCvtCategoryVO> pageComCvtCategory(Page page,
+        @Param("pageComCvtCategoryDTO") PageComCvtCategoryDTO pageComCvtCategoryDTO);
 
 }

--
Gitblit v1.7.1