From 796b44ea813a1133beae4f3a67f1c0263510c0c7 Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期日, 17 十一月 2024 09:45:07 +0800
Subject: [PATCH] 1

---
 src/main/java/com/moon/server/mapper/sys/ReportMapper.java |   93 ----------------------------------------------
 1 files changed, 1 insertions(+), 92 deletions(-)

diff --git a/src/main/java/com/moon/server/mapper/sys/ReportMapper.java b/src/main/java/com/moon/server/mapper/sys/ReportMapper.java
index fe77531..3e03ad6 100644
--- a/src/main/java/com/moon/server/mapper/sys/ReportMapper.java
+++ b/src/main/java/com/moon/server/mapper/sys/ReportMapper.java
@@ -7,128 +7,37 @@
 
 import java.util.List;
 
-/**
- * 鎶ュ憡妯℃澘
- * @author WWW
- */
 @Mapper
 @Repository
+@SuppressWarnings("ALL")
 public interface ReportMapper {
-    /**
-     * 鏌ヨ璁板綍鏁�
-     *
-     * @param name 鍚嶇О
-     * @param code 缂栫爜
-     * @return 璁板綍鏁�
-     */
     public Integer selectCount(String name, String code);
 
-    /**
-     * 鍒嗛〉鏌ヨ
-     *
-     * @param name   鍚嶇О
-     * @param code   缂栫爜
-     * @param limit  璁板綍鏁�
-     * @param offset 鍋忕Щ閲�
-     * @return 鍒楄〃
-     */
     public List<ReportEntity> selectByPage(String name, String code, Integer limit, Integer offset);
 
-    /**
-     * 鏌ヨ鎵�鏈�
-     *
-     * @return
-     */
     public List<ReportEntity> selectAll();
 
-    /**
-     * 鏍规嵁ID鏌ヨ
-     *
-     * @param id
-     * @return
-     */
     public ReportEntity selectById(int id);
 
-    /**
-     * 鎻掑叆涓�鏉�
-     *
-     * @param entity
-     * @return
-     */
     public Integer insert(ReportEntity entity);
 
-    /**
-     * 鎻掑叆澶氭潯
-     *
-     * @param list
-     * @return
-     */
     public Integer inserts(List<ReportEntity> list);
 
-    /**
-     * 鍒犻櫎涓�鏉�
-     *
-     * @param id
-     * @return
-     */
     public Integer delete(int id);
 
-    /**
-     * 鍒犻櫎澶氭潯
-     *
-     * @param ids
-     * @return
-     */
     public Integer deletes(List<Integer> ids);
 
-    /**
-     * 鏇存柊涓�鏉�
-     *
-     * @param entity
-     * @return
-     */
     public Integer update(ReportEntity entity);
 
-    /**
-     * 鏇存柊澶氭潯
-     *
-     * @param list
-     * @return
-     */
     public Integer updates(List<ReportEntity> list);
 
-    /**
-     * 鏁版嵁閲忕粺璁�
-     *
-     * @return
-     */
     public List<CountEntity> countSizes();
 
-    /**
-     * 鎸夋枃浠剁被鍨嬬粺璁�
-     *
-     * @return
-     */
     public List<CountEntity> countSizesByType();
 
-    /**
-     * 鏈嶅姟璋冪敤閲忕粺璁�
-     *
-     * @return
-     */
     public List<CountEntity> countServices();
 
-    /**
-     * 鐢ㄦ埛娴侀噺缁熻
-     *
-     * @return
-     */
     public List<CountEntity> countOperates();
 
-    /**
-     * 鎸夐」鐩粺璁℃暟鎹�
-     *
-     * @return
-     */
     public List<CountEntity> countSizesByPrj();
 }

--
Gitblit v1.9.3