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/ComActEasyPhotoClassifyMapper.java |   23 ++++++++++++++---------
 1 files changed, 14 insertions(+), 9 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActEasyPhotoClassifyMapper.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActEasyPhotoClassifyMapper.java
index 9487857..40e407e 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActEasyPhotoClassifyMapper.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/ComActEasyPhotoClassifyMapper.java
@@ -1,15 +1,16 @@
 package com.panzhihua.service_community.dao;
 
+import java.util.List;
+
+import org.apache.ibatis.annotations.Mapper;
+import org.apache.ibatis.annotations.Param;
+
 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.easyPhoto.AddEasyPhotoClassifyDTO;
 import com.panzhihua.common.model.vos.community.easyPhoto.ComActEasyPhotoClassifyVO;
 import com.panzhihua.service_community.model.dos.ComActEasyPhotoClassifyDO;
-import org.apache.ibatis.annotations.Mapper;
-import org.apache.ibatis.annotations.Param;
-
-import java.util.List;
 
 /**
  * @auther lyq
@@ -21,15 +22,19 @@
 
     /**
      * 运营后台-分页查询随手拍分类
-     * @param photoClassifyDTO  请求参数
-     * @return  随手拍分类列表
+     * 
+     * @param photoClassifyDTO
+     *            请求参数
+     * @return 随手拍分类列表
      */
-    IPage<ComActEasyPhotoClassifyVO> getPhotoClassifyPage(Page page, @Param("photoClassifyDTO") AddEasyPhotoClassifyDTO photoClassifyDTO);
+    IPage<ComActEasyPhotoClassifyVO> getPhotoClassifyPage(Page page,
+        @Param("photoClassifyDTO") AddEasyPhotoClassifyDTO photoClassifyDTO);
 
     /**
      * 运营后台-查询随手拍分类列表
-     * @return  随手拍分类列表
+     * 
+     * @return 随手拍分类列表
      */
-    List<ComActEasyPhotoClassifyVO> getPhotoClassifyList();
+    List<ComActEasyPhotoClassifyVO> getPhotoClassifyList(String areaCode);
 
 }

--
Gitblit v1.7.1