mirror of
https://github.com/hpd840321/starRiverProperty.git
synced 2026-06-10 08:50:29 +08:00
chore: 工作区反编译与 Maven/文档/脚本同步到发布分支
- artifacts/decompiled 树与相关源码变更 - maven-cw-elevator-application 业务 docs 与 package-info - scripts 下 formatter 校验与辅助脚本 - 其他子工程/接口与发布线一并纳入版本控制 Made-with: Cursor Former-commit-id: e102e8cab64e575bcd23c9a66a598aa1892bb492
This commit is contained in:
+4
-6
@@ -6,13 +6,11 @@ import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Target({ElementType.METHOD})
|
||||
@Target({ ElementType.METHOD })
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Documented
|
||||
public @interface CloudwalkParamsValidate {
|
||||
int[] argsIndexs() default {0};
|
||||
|
||||
Class<?>[] groups() default {javax.validation.groups.Default.class};
|
||||
int[] argsIndexs() default { 0 };
|
||||
|
||||
Class<?>[] groups() default { javax.validation.groups.Default.class };
|
||||
}
|
||||
|
||||
|
||||
|
||||
+6
-8
@@ -6,15 +6,13 @@ import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Target({ElementType.PARAMETER, ElementType.METHOD})
|
||||
@Target({ ElementType.PARAMETER, ElementType.METHOD })
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Documented
|
||||
public @interface CloudwalkTrace {
|
||||
String module() default "";
|
||||
|
||||
String operation() default "";
|
||||
|
||||
boolean code() default false;
|
||||
String module() default "";
|
||||
|
||||
String operation() default "";
|
||||
|
||||
boolean code() default false;
|
||||
}
|
||||
|
||||
|
||||
|
||||
+3
-4
@@ -6,9 +6,8 @@ import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Target({ElementType.FIELD})
|
||||
@Target({ ElementType.FIELD })
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Documented
|
||||
public @interface DataFieldEncrypt {}
|
||||
|
||||
|
||||
public @interface DataFieldEncrypt {
|
||||
}
|
||||
|
||||
+3
-4
@@ -6,9 +6,8 @@ import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Target({ElementType.TYPE})
|
||||
@Target({ ElementType.TYPE })
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Documented
|
||||
public @interface DataObjectEncrypt {}
|
||||
|
||||
|
||||
public @interface DataObjectEncrypt {
|
||||
}
|
||||
|
||||
+3
-4
@@ -8,10 +8,9 @@ import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Target({ElementType.FIELD, ElementType.METHOD})
|
||||
@Target({ ElementType.FIELD, ElementType.METHOD })
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@JsonSerialize(using = I8ndescribedSerialize.class)
|
||||
@JacksonAnnotationsInside
|
||||
public @interface I8ndescribed {}
|
||||
|
||||
|
||||
public @interface I8ndescribed {
|
||||
}
|
||||
|
||||
+8
-10
@@ -9,18 +9,16 @@ import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Target({ElementType.FIELD, ElementType.METHOD})
|
||||
@Target({ ElementType.FIELD, ElementType.METHOD })
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@JsonSerialize(using = SensitiveInfoSerialize.class)
|
||||
@JacksonAnnotationsInside
|
||||
public @interface SensitiveField {
|
||||
SensitiveType type() default SensitiveType.NULL;
|
||||
|
||||
int prefix() default 4;
|
||||
|
||||
int suffix() default 3;
|
||||
|
||||
int split() default 3;
|
||||
SensitiveType type() default SensitiveType.NULL;
|
||||
|
||||
int prefix() default 4;
|
||||
|
||||
int suffix() default 3;
|
||||
|
||||
int split() default 3;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user