style: 应用 Spotless 代码格式化

- 对所有 Java 源文件应用统一的代码格式化
- 统一缩进为 4 个空格
- 清理尾随空白字符和文件末尾换行
- 优化导入语句组织
- 总计格式化 654 个 Java 文件

有问题可以回滚或者找我聊
This commit is contained in:
irving
2025-08-30 21:21:08 -04:00
parent 7cafe17cd3
commit d719a047d8
619 changed files with 6491 additions and 6625 deletions

View File

@@ -1,8 +1,7 @@
package com.starry.common.constant;
/**
* @author admin
* 通用常量信息
* @author admin 通用常量信息
*/
public class Constants {
@@ -66,7 +65,4 @@ public class Constants {
public static final String LOGIN_USER_KEY_MINI = "login_user_key_mini";
public static final String LOGIN_USER_KEY_COSER = "login_user_key_coser";
}

View File

@@ -1,8 +1,7 @@
package com.starry.common.constant;
/**
* @author admin
* 权限相关常量
* @author admin 权限相关常量
*/
public class SecurityConstants {
/**

View File

@@ -7,7 +7,7 @@ package com.starry.common.constant;
public class UserConstants {
/**
* 校验返回结果码 0唯一 1不唯一
* 校验返回结果码 0唯一 1不唯一
*/
public final static String UNIQUE = "0";
public final static String NOT_UNIQUE = "1";