[fix] 修改标签

This commit is contained in:
2024-10-09 14:42:26 +08:00
parent 550f4cbdae
commit 6eec60e9dd
116 changed files with 133 additions and 139 deletions

View File

@ -3,7 +3,7 @@ package cn.iocoder.yudao.framework.common.core;
/**
* 可生成 Int 数组的接口
*
* @author 芋道源码
* @author hhyykk
*/
public interface IntArrayValuable {

View File

@ -9,7 +9,7 @@ import java.io.Serializable;
/**
* Key Value 的键值对
*
* @author 芋道源码
* @author hhyykk
*/
@Data
@NoArgsConstructor

View File

@ -10,7 +10,7 @@ import java.util.Arrays;
/**
* 通用状态枚举
*
* @author 芋道源码
* @author hhyykk
*/
@Getter
@AllArgsConstructor

View File

@ -6,7 +6,7 @@ import lombok.Getter;
/**
* 文档地址
*
* @author 芋道源码
* @author hhyykk
*/
@Getter
@AllArgsConstructor

View File

@ -9,7 +9,7 @@ import java.util.Arrays;
/**
* 终端的枚举
*
* @author 芋道源码
* @author hhyykk
*/
@RequiredArgsConstructor
@Getter

View File

@ -5,7 +5,7 @@ package cn.iocoder.yudao.framework.common.enums;
*
* 考虑到每个 starter 都需要用到该工具类,所以放到 common 模块下的 enums 包下
*
* @author 芋道源码
* @author hhyykk
*/
public interface WebFilterOrderEnum {

View File

@ -10,7 +10,7 @@ import cn.iocoder.yudao.framework.common.exception.ErrorCode;
* 虽然说HTTP 响应状态码作为业务使用表达能力偏弱,但是使用在系统层面还是非常不错的
* 比较特殊的是,因为之前一直使用 0 作为成功,就不使用 200 啦。
*
* @author 芋道源码
* @author hhyykk
*/
public interface GlobalErrorCodeConstants {

View File

@ -25,7 +25,7 @@ package cn.iocoder.yudao.framework.common.exception.enums;
* 不限制规则。
* 一般建议,每个模块自增。
*
* @author 芋道源码
* @author hhyykk
*/
public class ServiceErrorCodeRange {

View File

@ -10,7 +10,7 @@ import java.util.concurrent.Executors;
/**
* Cache 工具类
*
* @author 芋道源码
* @author hhyykk
*/
public class CacheUtils {

View File

@ -13,7 +13,7 @@ import static cn.iocoder.yudao.framework.common.util.collection.CollectionUtils.
/**
* Array 工具类
*
* @author 芋道源码
* @author hhyykk
*/
public class ArrayUtils {

View File

@ -15,7 +15,7 @@ import static java.util.Arrays.asList;
/**
* Collection 工具类
*
* @author 芋道源码
* @author hhyykk
*/
public class CollectionUtils {

View File

@ -16,7 +16,7 @@ import java.util.function.Consumer;
/**
* Map 工具类
*
* @author 芋道源码
* @author hhyykk
*/
public class MapUtils {

View File

@ -7,7 +7,7 @@ import java.util.Set;
/**
* Set 工具类
*
* @author 芋道源码
* @author hhyykk
*/
public class SetUtils {

View File

@ -9,7 +9,7 @@ import java.util.Date;
/**
* 时间工具类
*
* @author 芋道源码
* @author hhyykk
*/
public class DateUtils {

View File

@ -17,7 +17,7 @@ import java.util.List;
/**
* 时间工具类,用于 {@link java.time.LocalDateTime}
*
* @author 芋道源码
* @author hhyykk
*/
public class LocalDateTimeUtils {

View File

@ -19,7 +19,7 @@ import java.util.Map;
/**
* HTTP 工具类
*
* @author 芋道源码
* @author hhyykk
*/
public class HttpUtils {

View File

@ -14,7 +14,7 @@ import java.io.File;
/**
* 文件工具类
*
* @author 芋道源码
* @author hhyykk
*/
public class FileUtils {

View File

@ -9,7 +9,7 @@ import java.io.InputStream;
/**
* IO 工具类,用于 {@link cn.hutool.core.io.IoUtil} 缺失的方法
*
* @author 芋道源码
* @author hhyykk
*/
public class IoUtils {

View File

@ -21,7 +21,7 @@ import java.util.List;
/**
* JSON 工具类
*
* @author 芋道源码
* @author hhyykk
*/
@Slf4j
public class JsonUtils {

View File

@ -7,7 +7,7 @@ import org.apache.skywalking.apm.toolkit.trace.TraceContext;
*
* 考虑到每个 starter 都需要用到该工具类,所以放到 common 模块下的 util 包下
*
* @author 芋道源码
* @author hhyykk
*/
public class TracerUtils {

View File

@ -9,7 +9,7 @@ import java.math.RoundingMode;
/**
* 金额工具类
*
* @author 芋道源码
* @author hhyykk
*/
public class MoneyUtils {

View File

@ -8,7 +8,7 @@ import java.math.BigDecimal;
/**
* 数字的工具类,补全 {@link cn.hutool.core.util.NumberUtil} 的功能
*
* @author 芋道源码
* @author hhyykk
*/
public class NumberUtils {

View File

@ -13,7 +13,7 @@ import java.util.function.Consumer;
* 1. 默认使用 {@link cn.hutool.core.bean.BeanUtil} 作为实现类,虽然不同 bean 工具的性能有差别,但是对绝大多数同学的项目,不用在意这点性能
* 2. 针对复杂的对象转换,可以搜参考 AuthConvert 实现,通过 mapstruct + default 配合实现
*
* @author 芋道源码
* @author hhyykk
*/
public class BeanUtils {

View File

@ -10,7 +10,7 @@ import java.util.function.Consumer;
/**
* Object 工具类
*
* @author 芋道源码
* @author hhyykk
*/
public class ObjectUtils {

View File

@ -14,7 +14,7 @@ import static java.util.Collections.singletonList;
/**
* {@link cn.iocoder.yudao.framework.common.pojo.PageParam} 工具类
*
* @author 芋道源码
* @author hhyykk
*/
public class PageUtils {

View File

@ -16,7 +16,7 @@ import java.util.Map;
/**
* 客户端工具类
*
* @author 芋道源码
* @author hhyykk
*/
public class ServletUtils {

View File

@ -7,7 +7,7 @@ import java.util.Objects;
/**
* Spring 工具类
*
* @author 芋道源码
* @author hhyykk
*/
public class SpringUtils extends SpringUtil {

View File

@ -13,7 +13,7 @@ import java.util.stream.Collectors;
/**
* 字符串工具类
*
* @author 芋道源码
* @author hhyykk
*/
public class StrUtils {

View File

@ -14,7 +14,7 @@ import java.util.regex.Pattern;
/**
* 校验工具类
*
* @author 芋道源码
* @author hhyykk
*/
public class ValidationUtils {