Browse Source

【更新】调整注释符合阿里巴巴代码规范

就是那个锅 4 years ago
parent
commit
5da3ed343b

+ 5 - 1
guns-base-support/guns-core/src/main/java/cn/stylefeng/guns/core/context/system/SystemContext.java

@ -109,7 +109,8 @@ public interface SystemContext {
    /**
    /**
     * 根据字典类型获取字典的code值
     * 根据字典类型获取字典的code值
     *
     * @param dictTypeCodes 字典类型编码值
     * @return 字典的code值
     * @author fengshuonan
     * @author fengshuonan
     * @date 2020/8/9 14:18
     * @date 2020/8/9 14:18
     */
     */
@ -120,6 +121,9 @@ public interface SystemContext {
     * <p>
     * <p>
     * 一般用于唯一code校验
     * 一般用于唯一code校验
     *
     *
     * @param tableName 表名
     * @param columnName 列名
     * @param value 值
     * @return true-是唯一的值,false-不是唯一的
     * @return true-是唯一的值,false-不是唯一的
     * @author fengshuonan
     * @author fengshuonan
     * @date 2020/8/9 21:41
     * @date 2020/8/9 21:41

+ 2 - 0
guns-base-support/guns-system/src/main/java/cn/stylefeng/guns/sys/modular/dict/mapper/SysDictDataMapper.java

@ -40,6 +40,8 @@ public interface SysDictDataMapper extends BaseMapper<SysDictData> {
    /**
    /**
     * 通过字典类型code获取字典编码值列表
     * 通过字典类型code获取字典编码值列表
     *
     *
     * @param dictTypeCodes 字典类型编码集合
     * @return 字典编码值列表
     * @author fengshuonan
     * @author fengshuonan
     * @date 2020/8/9 14:27
     * @date 2020/8/9 14:27
     */
     */

+ 2 - 0
guns-base-support/guns-system/src/main/java/cn/stylefeng/guns/sys/modular/dict/service/SysDictDataService.java

@ -128,6 +128,8 @@ public interface SysDictDataService extends IService<SysDictData> {
    /**
    /**
     * 根据字典类型获取字典的code值
     * 根据字典类型获取字典的code值
     *
     *
     * @param dictTypeCodes 字典类型编码集合
     * @return 字典编码值列表
     * @author fengshuonan
     * @author fengshuonan
     * @date 2020/8/9 14:18
     * @date 2020/8/9 14:18
     */
     */