package com.thhy.general.annotations;
|
|
import java.lang.annotation.*;
|
|
@Documented
|
@Retention(RetentionPolicy.RUNTIME)
|
@Target(ElementType.FIELD)
|
public @interface Excel {
|
|
int sort() default 1;
|
|
String title() default "";
|
|
String patter() default "yyyy-MM-dd";
|
|
int width() default 3;
|
|
boolean dict() default false;
|
|
boolean seq() default false;
|
}
|