mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-23 23:45:08 +08:00
[fix] 修改标签
This commit is contained in:
@ -3,7 +3,7 @@ package cn.iocoder.yudao.framework.common.core;
|
||||
/**
|
||||
* 可生成 Int 数组的接口
|
||||
*
|
||||
* @author 芋道源码
|
||||
* @author hhyykk
|
||||
*/
|
||||
public interface IntArrayValuable {
|
||||
|
||||
|
@ -9,7 +9,7 @@ import java.io.Serializable;
|
||||
/**
|
||||
* Key Value 的键值对
|
||||
*
|
||||
* @author 芋道源码
|
||||
* @author hhyykk
|
||||
*/
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
|
@ -10,7 +10,7 @@ import java.util.Arrays;
|
||||
/**
|
||||
* 通用状态枚举
|
||||
*
|
||||
* @author 芋道源码
|
||||
* @author hhyykk
|
||||
*/
|
||||
@Getter
|
||||
@AllArgsConstructor
|
||||
|
@ -6,7 +6,7 @@ import lombok.Getter;
|
||||
/**
|
||||
* 文档地址
|
||||
*
|
||||
* @author 芋道源码
|
||||
* @author hhyykk
|
||||
*/
|
||||
@Getter
|
||||
@AllArgsConstructor
|
||||
|
@ -9,7 +9,7 @@ import java.util.Arrays;
|
||||
/**
|
||||
* 终端的枚举
|
||||
*
|
||||
* @author 芋道源码
|
||||
* @author hhyykk
|
||||
*/
|
||||
@RequiredArgsConstructor
|
||||
@Getter
|
||||
|
@ -5,7 +5,7 @@ package cn.iocoder.yudao.framework.common.enums;
|
||||
*
|
||||
* 考虑到每个 starter 都需要用到该工具类,所以放到 common 模块下的 enums 包下
|
||||
*
|
||||
* @author 芋道源码
|
||||
* @author hhyykk
|
||||
*/
|
||||
public interface WebFilterOrderEnum {
|
||||
|
||||
|
@ -10,7 +10,7 @@ import cn.iocoder.yudao.framework.common.exception.ErrorCode;
|
||||
* 虽然说,HTTP 响应状态码作为业务使用表达能力偏弱,但是使用在系统层面还是非常不错的
|
||||
* 比较特殊的是,因为之前一直使用 0 作为成功,就不使用 200 啦。
|
||||
*
|
||||
* @author 芋道源码
|
||||
* @author hhyykk
|
||||
*/
|
||||
public interface GlobalErrorCodeConstants {
|
||||
|
||||
|
@ -25,7 +25,7 @@ package cn.iocoder.yudao.framework.common.exception.enums;
|
||||
* 不限制规则。
|
||||
* 一般建议,每个模块自增。
|
||||
*
|
||||
* @author 芋道源码
|
||||
* @author hhyykk
|
||||
*/
|
||||
public class ServiceErrorCodeRange {
|
||||
|
||||
|
@ -10,7 +10,7 @@ import java.util.concurrent.Executors;
|
||||
/**
|
||||
* Cache 工具类
|
||||
*
|
||||
* @author 芋道源码
|
||||
* @author hhyykk
|
||||
*/
|
||||
public class CacheUtils {
|
||||
|
||||
|
@ -13,7 +13,7 @@ import static cn.iocoder.yudao.framework.common.util.collection.CollectionUtils.
|
||||
/**
|
||||
* Array 工具类
|
||||
*
|
||||
* @author 芋道源码
|
||||
* @author hhyykk
|
||||
*/
|
||||
public class ArrayUtils {
|
||||
|
||||
|
@ -15,7 +15,7 @@ import static java.util.Arrays.asList;
|
||||
/**
|
||||
* Collection 工具类
|
||||
*
|
||||
* @author 芋道源码
|
||||
* @author hhyykk
|
||||
*/
|
||||
public class CollectionUtils {
|
||||
|
||||
|
@ -16,7 +16,7 @@ import java.util.function.Consumer;
|
||||
/**
|
||||
* Map 工具类
|
||||
*
|
||||
* @author 芋道源码
|
||||
* @author hhyykk
|
||||
*/
|
||||
public class MapUtils {
|
||||
|
||||
|
@ -7,7 +7,7 @@ import java.util.Set;
|
||||
/**
|
||||
* Set 工具类
|
||||
*
|
||||
* @author 芋道源码
|
||||
* @author hhyykk
|
||||
*/
|
||||
public class SetUtils {
|
||||
|
||||
|
@ -9,7 +9,7 @@ import java.util.Date;
|
||||
/**
|
||||
* 时间工具类
|
||||
*
|
||||
* @author 芋道源码
|
||||
* @author hhyykk
|
||||
*/
|
||||
public class DateUtils {
|
||||
|
||||
|
@ -17,7 +17,7 @@ import java.util.List;
|
||||
/**
|
||||
* 时间工具类,用于 {@link java.time.LocalDateTime}
|
||||
*
|
||||
* @author 芋道源码
|
||||
* @author hhyykk
|
||||
*/
|
||||
public class LocalDateTimeUtils {
|
||||
|
||||
|
@ -19,7 +19,7 @@ import java.util.Map;
|
||||
/**
|
||||
* HTTP 工具类
|
||||
*
|
||||
* @author 芋道源码
|
||||
* @author hhyykk
|
||||
*/
|
||||
public class HttpUtils {
|
||||
|
||||
|
@ -14,7 +14,7 @@ import java.io.File;
|
||||
/**
|
||||
* 文件工具类
|
||||
*
|
||||
* @author 芋道源码
|
||||
* @author hhyykk
|
||||
*/
|
||||
public class FileUtils {
|
||||
|
||||
|
@ -9,7 +9,7 @@ import java.io.InputStream;
|
||||
/**
|
||||
* IO 工具类,用于 {@link cn.hutool.core.io.IoUtil} 缺失的方法
|
||||
*
|
||||
* @author 芋道源码
|
||||
* @author hhyykk
|
||||
*/
|
||||
public class IoUtils {
|
||||
|
||||
|
@ -21,7 +21,7 @@ import java.util.List;
|
||||
/**
|
||||
* JSON 工具类
|
||||
*
|
||||
* @author 芋道源码
|
||||
* @author hhyykk
|
||||
*/
|
||||
@Slf4j
|
||||
public class JsonUtils {
|
||||
|
@ -7,7 +7,7 @@ import org.apache.skywalking.apm.toolkit.trace.TraceContext;
|
||||
*
|
||||
* 考虑到每个 starter 都需要用到该工具类,所以放到 common 模块下的 util 包下
|
||||
*
|
||||
* @author 芋道源码
|
||||
* @author hhyykk
|
||||
*/
|
||||
public class TracerUtils {
|
||||
|
||||
|
@ -9,7 +9,7 @@ import java.math.RoundingMode;
|
||||
/**
|
||||
* 金额工具类
|
||||
*
|
||||
* @author 芋道源码
|
||||
* @author hhyykk
|
||||
*/
|
||||
public class MoneyUtils {
|
||||
|
||||
|
@ -8,7 +8,7 @@ import java.math.BigDecimal;
|
||||
/**
|
||||
* 数字的工具类,补全 {@link cn.hutool.core.util.NumberUtil} 的功能
|
||||
*
|
||||
* @author 芋道源码
|
||||
* @author hhyykk
|
||||
*/
|
||||
public class NumberUtils {
|
||||
|
||||
|
@ -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 {
|
||||
|
||||
|
@ -10,7 +10,7 @@ import java.util.function.Consumer;
|
||||
/**
|
||||
* Object 工具类
|
||||
*
|
||||
* @author 芋道源码
|
||||
* @author hhyykk
|
||||
*/
|
||||
public class ObjectUtils {
|
||||
|
||||
|
@ -14,7 +14,7 @@ import static java.util.Collections.singletonList;
|
||||
/**
|
||||
* {@link cn.iocoder.yudao.framework.common.pojo.PageParam} 工具类
|
||||
*
|
||||
* @author 芋道源码
|
||||
* @author hhyykk
|
||||
*/
|
||||
public class PageUtils {
|
||||
|
||||
|
@ -16,7 +16,7 @@ import java.util.Map;
|
||||
/**
|
||||
* 客户端工具类
|
||||
*
|
||||
* @author 芋道源码
|
||||
* @author hhyykk
|
||||
*/
|
||||
public class ServletUtils {
|
||||
|
||||
|
@ -7,7 +7,7 @@ import java.util.Objects;
|
||||
/**
|
||||
* Spring 工具类
|
||||
*
|
||||
* @author 芋道源码
|
||||
* @author hhyykk
|
||||
*/
|
||||
public class SpringUtils extends SpringUtil {
|
||||
|
||||
|
@ -13,7 +13,7 @@ import java.util.stream.Collectors;
|
||||
/**
|
||||
* 字符串工具类
|
||||
*
|
||||
* @author 芋道源码
|
||||
* @author hhyykk
|
||||
*/
|
||||
public class StrUtils {
|
||||
|
||||
|
@ -14,7 +14,7 @@ import java.util.regex.Pattern;
|
||||
/**
|
||||
* 校验工具类
|
||||
*
|
||||
* @author 芋道源码
|
||||
* @author hhyykk
|
||||
*/
|
||||
public class ValidationUtils {
|
||||
|
||||
|
Reference in New Issue
Block a user