From 024e90554d19c2342f27a26f91bbea378f84da82 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期三, 13 十一月 2024 17:25:18 +0800 Subject: [PATCH] 1 --- src/main/java/com/moon/server/mapper/data/DictMapper.java | 70 ---------------------------------- 1 files changed, 1 insertions(+), 69 deletions(-) diff --git a/src/main/java/com/moon/server/mapper/data/DictMapper.java b/src/main/java/com/moon/server/mapper/data/DictMapper.java index 9638731..fe8f31b 100644 --- a/src/main/java/com/moon/server/mapper/data/DictMapper.java +++ b/src/main/java/com/moon/server/mapper/data/DictMapper.java @@ -7,95 +7,27 @@ import java.util.List; -/** - * 瀛楀吀绠$悊 - * @author WWW - */ @Mapper @Repository +@SuppressWarnings("ALL") public interface DictMapper { - /** - * 鏌ヨ璁板綍鏁� - * - * @param ns 琛ㄧ┖闂� - * @param tab 琛ㄥ悕 - * @return 璁板綍鏁� - */ public Integer selectCount(String ns, String tab); - /** - * 鍒嗛〉鏌ヨ - * - * @param ns 琛ㄧ┖闂� - * @param tab 琛ㄥ悕 - * @param limit 璁板綍鏁� - * @param offset 鍋忕Щ閲� - * @return 鍒楄〃 - */ public List<DictEntity> selectByPage(String ns, String tab, Integer limit, Integer offset); - /** - * 鏍规嵁ID鏌ヨ - * - * @param id - * @return - */ public DictEntity selectById(int id); - /** - * 鏌ヨ瀛楀吀琛ㄧ粨鏋� - * - * @param name - * @param field - * @return - */ public List<TabEntity> selectDictTab(String name, String field); - /** - * 鎻掑叆涓�鏉� - * - * @param entity - * @return - */ public Integer insert(DictEntity entity); - /** - * 鎻掑叆澶氭潯 - * - * @param list - * @return - */ public Integer inserts(List<DictEntity> list); - /** - * 鍒犻櫎涓�鏉� - * - * @param id - * @return - */ public Integer delete(int id); - /** - * 鍒犻櫎澶氭潯 - * - * @param ids - * @return - */ public Integer deletes(List<Integer> ids); - /** - * 鏇存柊涓�鏉� - * - * @param entity - * @return - */ public Integer update(DictEntity entity); - /** - * 鏇存柊澶氭潯 - * - * @param list - * @return - */ public Integer updates(List<DictEntity> list); } -- Gitblit v1.9.3