【修改】 名称替换

This commit is contained in:
DESKTOP-932OMT8\REN
2025-05-21 17:28:26 +08:00
parent 3bd8a424ec
commit b5f18ba897
1212 changed files with 1262 additions and 1270 deletions

View File

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

View File

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

View File

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

View File

@@ -5,7 +5,7 @@ package pc.exam.pp.framework.common.enums;
*
* 虽然放在 exam-spring-boot-starter-rpc 会相对合适,但是每个 API 模块需要使用到,所以暂时只好放在此处
*
* @author 芋道源码
* @author 朋辰
*/
public class RpcConstants {

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -13,7 +13,7 @@ import static pc.exam.pp.framework.common.util.collection.CollectionUtils.conver
/**
* Array 工具类
*
* @author 芋道源码
* @author 朋辰
*/
public class ArrayUtils {

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -10,7 +10,7 @@ import java.util.List;
/**
* 数字的工具类,补全 {@link cn.hutool.core.util.NumberUtil} 的功能
*
* @author 芋道源码
* @author 朋辰
*/
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 朋辰
*/
public class BeanUtils {

View File

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

View File

@@ -14,7 +14,7 @@ import static java.util.Collections.singletonList;
/**
* {@link pc.exam.pp.framework.common.pojo.PageParam} 工具类
*
* @author 芋道源码
* @author 朋辰
*/
public class PageUtils {

View File

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

View File

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

View File

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

View File

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