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/MetaMapper.java | 176 ---------------------------------------------------------- 1 files changed, 1 insertions(+), 175 deletions(-) diff --git a/src/main/java/com/moon/server/mapper/data/MetaMapper.java b/src/main/java/com/moon/server/mapper/data/MetaMapper.java index d274c3d..9416807 100644 --- a/src/main/java/com/moon/server/mapper/data/MetaMapper.java +++ b/src/main/java/com/moon/server/mapper/data/MetaMapper.java @@ -7,225 +7,51 @@ import java.util.Date; import java.util.List; -/** - * 鍏冩暟鎹� - * @author WWW - */ @Mapper @Repository +@SuppressWarnings("ALL") public interface MetaMapper { - /** - * 鏌ヨ璁板綍鏁� - * - * @param depcode 鍗曚綅缂栫爜 - * @param dircode 鐩綍缂栫爜 - * @param verid 鐗堟湰ID - * @param name 鍚嶇О - * @param sensorType 浼犳劅鍣ㄧ被鍨� - * @param mataType 鍏冩暟鎹被鍨� - * @param startDate 寮�濮嬫棩鏈� - * @param endDate 缁撴潫鏃ユ湡 - * @param wkt WKT - * @return 璁板綍鏁� - */ public Integer selectCount(String depcode, String dircode, Integer verid, String name, Integer sensorType, Integer mataType, Date startDate, Date endDate, String wkt); - /** - * 鍒嗛〉鏌ヨ - * - * @param depcode 鍗曚綅缂栫爜 - * @param dircode 鐩綍缂栫爜 - * @param verid 鐗堟湰ID - * @param name 鍚嶇О - * @param sensorType 浼犳劅鍣ㄧ被鍨� - * @param mataType 鍏冩暟鎹被鍨� - * @param startDate 寮�濮嬫棩鏈� - * @param endDate 缁撴潫鏃ユ湡 - * @param wkt WKT - * @param limit 璁板綍鏁� - * @param offset 鍋忕Щ閲� - * @return 鍒楄〃 - */ public List<MetaEntity> selectByPage(String depcode, String dircode, Integer verid, String name, Integer sensorType, Integer mataType, Date startDate, Date endDate, String wkt, Integer limit, Integer offset); - /** - * 鏍规嵁GUID鏌ヨGDB - * - * @param guid - * @return - */ public List<MetaEntity> selectGdbByGuid(String guid); - /** - * 鏌ヨ璁板綍鏁� - * - * @param depcode - * @param dirs - * @param name - * @return - */ public Integer selectMetasForCount(String depcode, String dirs, String name); - /** - * 鍒嗛〉鏌ヨ - * - * @param depcode - * @param dirs - * @param name - * @param limit - * @param offset - * @return - */ public List<MetaEntity> selectMetasForPage(String depcode, String dirs, String name, Integer limit, Integer offset); - /** - * 鏌ヨ涓婁紶璁板綍鏁� - * - * @param name 鍚嶇О - * @param createUser 鐢ㄦ埛ID - * @param types 鏂囦欢绫诲瀷 - * @return 璁板綍鏁� - */ public Integer selectCountForUpload(String name, Integer createUser, String types); - /** - * 鍒嗛〉鏌ヨ涓婁紶璁板綍 - * - * @param name 鍚嶇О - * @param createUser 鐢ㄦ埛ID - * @param types 鏂囦欢绫诲瀷 - * @param limit 璁板綍鏁� - * @param offset 鍋忕Щ閲� - * @return 鍒楄〃 - */ public List<MetaEntity> selectByPageForUpload(String name, Integer createUser, String types, Integer limit, Integer offset); - /** - * 鏍规嵁鐖禝D鏌ヨ璁板綍鏁� - * - * @param metaid - * @param name - * @return - */ public Integer selectCountByPid(Integer metaid, String name); - /** - * 鏍规嵁鐖禝D鍒嗛〉鏌ヨ - * - * @param metaid - * @param name - * @param limit - * @param offset - * @return - */ public List<MetaEntity> selectPageByPid(Integer metaid, String name, Integer limit, Integer offset); - /** - * 鏍规嵁ID鏌ヨ - * - * @param id - * @return - */ public MetaEntity selectById(int id); - /** - * 鏍规嵁id瀛楃涓叉煡璇� - * - * @param ids id瀛楃涓� - * @return 鍏冩暟鎹泦鍚� - */ public List<MetaEntity> selectByIds(String ids); - /** - * 鏍规嵁GUID鏌ヨ - * - * @param guid 鏂囦欢GUID - * @param dircode 鐩綍缂栫爜 - * @param tab 琛ㄥ悕 - * @return - */ public MetaEntity selectByGuid(String guid, String dircode, String tab); - /** - * 鏍规嵁澶氫釜ID鏌ヨ鍏冩暟鎹紙鏁版嵁琛級 - * - * @param ids - * @return - */ public List<MetaEntity> selectByIdsForTab(String ids); - /** - * 鏌ヨ鍏冩暟鎹枃浠� - * - * @param ids 鍏冩暟鎹甀D闆嗗悎 - * @return 鍏冩暟鎹枃浠堕泦鍚� - */ public List<MetaEntity> selectMetaFiles(String ids); - /** - * 鏌ヨExcel鍏冩暟鎹� - * - * @param ids 鍏冩暟鎹甀D闆嗗悎 - * @param tabs 琛ㄥ悕瀛楃涓� - * @return 鍏冩暟鎹枃浠堕泦鍚� - */ public List<MetaEntity> selectXlsAnnex(Integer[] ids, String tabs); - /** - * 鏍规嵁鐩綍缂栫爜鏌ヨ鍏冩暟鎹枃浠� - * - * @param dircode - * @return - */ public List<MetaEntity> selectMetasByDirCode(String dircode); - /** - * 鏌ヨ鍏冩暟鎹腑婧㈠嚭鐨勫崟浣岻D - * - * @param ids - * @param depcode - * @return - */ public List<String> selectMetaOverflowDep(String ids, String depcode); - /** - * 鎻掑叆涓�鏉� - * - * @param entity - * @return - */ public Integer insert(MetaEntity entity); - /** - * 鎻掑叆澶氭潯 - * - * @param list - * @return - */ public Integer inserts(List<MetaEntity> list); - /** - * 鍒犻櫎澶氭潯 - * - * @param sql - * @param ids - * @return - */ public Integer deletes(String sql, String ids); - /** - * 鏇存柊涓�鏉� - * - * @param entity - * @return - */ public Integer update(MetaEntity entity); - /** - * 鏇存柊澶氭潯 - * - * @param list - * @return - */ public Integer updates(List<MetaEntity> list); } -- Gitblit v1.9.3