From ee5baccab552762e9d57fb3fab04cd099dae018d Mon Sep 17 00:00:00 2001
From: liulin <lin.liu@aliyun.com>
Date: 星期二, 03 九月 2024 23:59:11 +0800
Subject: [PATCH] BasicMapperImpl

---
 src/main/java/com/lunhan/xxx/repository/BasicMapperImpl.java |   26 +++++++++++++-------------
 1 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/src/main/java/com/lunhan/xxx/repository/BasicMapperImpl.java b/src/main/java/com/lunhan/xxx/repository/BasicMapperImpl.java
index 01bf98d..4a33f2f 100644
--- a/src/main/java/com/lunhan/xxx/repository/BasicMapperImpl.java
+++ b/src/main/java/com/lunhan/xxx/repository/BasicMapperImpl.java
@@ -78,7 +78,7 @@
     /**
      * 根据 ID 删除
      *
-     * @param id 主键ID
+     * @param id 主键
      */
     public int deleteById(Serializable id) {
         return DB.deleteById(id);
@@ -88,7 +88,7 @@
      * 根据 ID 删除
      *
      * @param useFill 是否填充
-     * @param obj     主键ID或实体
+     * @param obj     主键或实体
      * @since 3.5.7
      */
     public int deleteById(Object obj, boolean useFill) {
@@ -127,7 +127,7 @@
     /**
      * 删除(根据ID或实体 批量删除)
      *
-     * @param idList 主键ID列表或实体列表(不能为 null 以及 empty)
+     * @param idList 主键列表或实体列表(不能为 null 以及 empty)
      * @deprecated 3.5.7 {@link #deleteByIds(Collection)}
      */
     @Deprecated
@@ -139,7 +139,7 @@
     /**
      * 删除(根据ID或实体 批量删除)
      *
-     * @param idList 主键ID列表或实体列表(不能为 null 以及 empty)
+     * @param idList 主键列表或实体列表(不能为 null 以及 empty)
      * @since 3.5.7
      */
     public int deleteByIds(@Param(Constants.COLL) Collection<?> idList) {
@@ -159,7 +159,7 @@
      *     <ul>注意:无论参数为id还是实体,填充参数只会以方法追加的et参数为准.<ul/>
      * </p>
      *
-     * @param collections 主键ID列表或实体列表(不能为 null 以及 empty)
+     * @param collections 主键列表或实体列表(不能为 null 以及 empty)
      * @param useFill     逻辑删除下是否填充
      * @since 3.5.7
      */
@@ -200,7 +200,7 @@
     /**
      * 根据 ID 查询
      *
-     * @param id 主键ID
+     * @param id 主键
      */
     public T selectById(Serializable id) {
         return DB.selectById(id);
@@ -209,7 +209,7 @@
     /**
      * 查询(根据ID 批量查询)
      *
-     * @param idList 主键ID列表(不能为 null 以及 empty)
+     * @param idList 主键列表(不能为 null 以及 empty)
      */
     public List<T> selectBatchIds(@Param(Constants.COLL) Collection<? extends Serializable> idList) {
         return DB.selectBatchIds(idList);
@@ -218,7 +218,7 @@
     /**
      * 查询(根据ID 批量查询)
      *
-     * @param idList        idList 主键ID列表(不能为 null 以及 empty)
+     * @param idList        idList 主键列表(不能为 null 以及 empty)
      * @param resultHandler resultHandler 结果处理器 {@link ResultHandler}
      * @since 3.5.4
      */
@@ -614,9 +614,9 @@
     }
 
     /**
-     * 根据主键id删除数据
+     * 根据主键删除数据
      *
-     * @param id 主键id
+     * @param id 主键
      * @return 是否成功
      */
     public Boolean remove(Serializable id) {
@@ -628,7 +628,7 @@
     }
 
     /**
-     * 根据主键id删除数据
+     * 根据主键删除数据
      *
      * @param listId id列表
      * @return 是否成功
@@ -656,9 +656,9 @@
     }
 
     /**
-     * 根据主键id逻辑删除数据(逻辑删除)
+     * 根据主键逻辑删除数据(逻辑删除)
      *
-     * @param id 主键id
+     * @param id 主键
      * @return 是否成功
      */
     public Boolean deleteLogic(Serializable id) {

--
Gitblit v1.9.3