yangys
2024-03-29 4b479381a65bd3ef526cb92631d3550f2aa17459
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.qianwen.smartman.common.validator.importmodel;
 
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import javax.validation.Constraint;
import javax.validation.Payload;
 
@Target({ElementType.FIELD, ElementType.PARAMETER})
@Constraint(validatedBy = {ImportModelValueValidator.class})
@Documented
@Retention(RetentionPolicy.RUNTIME)
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/common/validator/importmodel/ImportModelValue.class */
public @interface ImportModelValue {
 
    @Target({ElementType.FIELD, ElementType.PARAMETER})
    @Retention(RetentionPolicy.RUNTIME)
    @Documented
    /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/common/validator/importmodel/ImportModelValue$List.class */
    public @interface List {
        ImportModelValue[] value();
    }
 
    String message() default "不正确的状态标识";
 
    Class[] groups() default {};
 
    Class<? extends Payload>[] payload() default {};
 
    boolean required() default true;
}