package cn.iocoder.yudao.framework.dict.validation; import jakarta.validation.Constraint; import jakarta.validation.Payload; 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; @Target({ ElementType.METHOD, ElementType.FIELD, ElementType.ANNOTATION_TYPE, ElementType.CONSTRUCTOR, ElementType.PARAMETER, ElementType.TYPE_USE }) @Retention(RetentionPolicy.RUNTIME) @Documented @Constraint( validatedBy = {InDictValidator.class, InDictCollectionValidator.class} ) public @interface InDict { /** * 数据字典 type */ String type(); String message() default "必须在指定范围 {value}"; Class[] groups() default {}; Class[] payload() default {}; }