2022-05-07 10:18:50 +08:00
|
|
|
package com.engine.organization.annotation;
|
|
|
|
|
|
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Target({ElementType.FIELD})
|
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
|
|
|
@Documented
|
|
|
|
|
public @interface TableTitle {
|
2024-05-31 11:34:09 +08:00
|
|
|
int labelId() default -1;
|
2022-05-07 10:18:50 +08:00
|
|
|
String title();
|
|
|
|
|
String dataIndex();
|
|
|
|
|
String key();
|
|
|
|
|
boolean display() default true;
|
2022-06-23 09:14:19 +08:00
|
|
|
String width() default "";
|
|
|
|
|
boolean sorter() default false;
|
2022-05-07 10:18:50 +08:00
|
|
|
}
|