ecology_maven/aiyh/utils/annotation/DateFormatAn.java

18 lines
317 B
Java
Raw Normal View History

2021-11-14 15:29:16 +08:00
package aiyh.utils.annotation;
import java.lang.annotation.*;
/**
* @author EBU7-dev1-ay
* @date 2021/9/3 0003 16:02
*
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
@Documented
public @interface DateFormatAn {
String value() default "yyyy-MM-dd HH:mm:ss";
}