From 86df207c37502cce1b2043e1c7c0486459eef1d6 Mon Sep 17 00:00:00 2001
From: mitao <2763622819@qq.com>
Date: 星期四, 13 三月 2025 19:58:45 +0800
Subject: [PATCH] 党员、诉求评论基础代码

---
 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