18 lines
317 B
Java
18 lines
317 B
Java
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";
|
|
}
|