From e16f5fdfbc1c49f4c519f05b190e96e497253b51 Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期三, 13 十一月 2024 17:32:14 +0800
Subject: [PATCH] 1

---
 src/main/java/com/moon/server/mapper/sys/AttachMapper.java |  121 ----------------------------------------
 1 files changed, 1 insertions(+), 120 deletions(-)

diff --git a/src/main/java/com/moon/server/mapper/sys/AttachMapper.java b/src/main/java/com/moon/server/mapper/sys/AttachMapper.java
index 1d3c843..332fa41 100644
--- a/src/main/java/com/moon/server/mapper/sys/AttachMapper.java
+++ b/src/main/java/com/moon/server/mapper/sys/AttachMapper.java
@@ -7,162 +7,43 @@
 
 import java.util.List;
 
-/**
- * 闄勪欢
- * @author WWW
- */
 @Mapper
 @Repository
+@SuppressWarnings("ALL")
 public interface AttachMapper {
-    /**
-     * 鏌ヨ璁板綍鏁�
-     *
-     * @param name 鏂囦欢鍚�
-     * @return 璁板綍鏁�
-     */
     public Integer selectCount(String name);
 
-    /**
-     * 鍒嗛〉鏌ヨ
-     *
-     * @param name   鏂囦欢鍚�
-     * @param limit  璁板綍鏁�
-     * @param offset 鍋忕Щ閲�
-     * @return 鍒楄〃
-     */
     public List<AttachEntity> selectByPage(String name, Integer limit, Integer offset);
 
-    /**
-     * 鏌ヨ鎵�鏈�
-     *
-     * @return
-     */
     public List<AttachEntity> selectAll();
 
-    /**
-     * 鏍规嵁ID鏌ヨ
-     *
-     * @param id
-     * @return
-     */
     public AttachEntity selectById(int id);
 
-    /**
-     * 鏍规嵁Guid鏌ヨ
-     *
-     * @param guid
-     * @return
-     */
     public AttachEntity selectByGuid(String guid);
 
-    /**
-     * 鏍规嵁Guid鏁扮粍鏌ヨ
-     *
-     * @param guids
-     * @return
-     */
     public List<AttachEntity> selectByGuids(List<String> guids);
 
-    /**
-     * 鏍规嵁琛ㄥ悕鍜孏UID鏌ヨ
-     *
-     * @param tab
-     * @param tabGuid
-     * @param guid
-     * @return
-     */
     public AttachEntity selectByTabAndGuid(String tab, String tabGuid, String guid);
 
-    /**
-     * 鏍规嵁琛ㄥ悕鍜孏UID鏁扮粍鏌ヨ
-     *
-     * @param tab
-     * @param guids
-     * @return
-     */
     public List<AttachEntity> selectByTabGuids(String tab, List<String> guids);
 
-    /**
-     * 鏍规嵁琛ㄥ拰GUID鏌ヨ
-     *
-     * @param tab
-     * @param guid
-     * @return
-     */
     public List<AttachEntity> selectByTab(String tab, String guid);
 
-    /**
-     * 鎻掑叆涓�鏉�
-     *
-     * @param entity
-     * @return
-     */
     public Integer insert(AttachEntity entity);
 
-    /**
-     * 鎻掑叆澶氭潯
-     *
-     * @param list
-     * @return
-     */
     public Integer inserts(List<AttachEntity> list);
 
-    /**
-     * 鍒犻櫎涓�鏉�
-     *
-     * @param id
-     * @return
-     */
     public Integer delete(int id);
 
-    /**
-     * 鍒犻櫎澶氭潯
-     *
-     * @param ids
-     * @return
-     */
     public Integer deletes(List<Integer> ids);
 
-    /**
-     * 鏇存柊涓�鏉�
-     *
-     * @param entity
-     * @return
-     */
     public Integer update(AttachEntity entity);
 
-    /**
-     * 鏇存柊澶氭潯
-     *
-     * @param list
-     * @return
-     */
     public Integer updates(List<AttachEntity> list);
 
-    /**
-     * 鏌ヨFME鏃ュ織
-     *
-     * @param tabs
-     * @return
-     */
     public List<FmeLogEntity> selectFmeLogs(String tabs);
 
-    /**
-     * 鏇存柊FME鏃ュ織
-     *
-     * @param id ID
-     * @return
-     */
     public Integer updateFmeLog(Integer id);
 
-    /**
-     * 鏍规嵁鍏冩暟鎹悕绉版彃鍏ラ檮浠�
-     *
-     * @param tab
-     * @param tabGuid
-     * @param metaName
-     * @param dirid
-     * @return
-     */
     public Integer insertAttachByMeta(String tab, String tabGuid, String metaName, String dirid);
 }

--
Gitblit v1.9.3