weaver-hrm-organization/src/com/engine/organization/annotation/OrganizationTableColumn.java

33 lines
572 B
Java
Raw Normal View History

2022-05-07 10:18:50 +08:00
package com.engine.organization.annotation;
import java.lang.annotation.*;
/**
2022-05-10 10:54:41 +08:00
* @Author dxfeng
2022-06-14 11:07:48 +08:00
* @Description:
2022-05-10 10:54:41 +08:00
* @Date 2022/5/9
* @Version V1.0
2022-05-07 10:18:50 +08:00
**/
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface OrganizationTableColumn {
String text() default "";
int labelId() default -1;
String width() default "";
String column() default "";
boolean display() default true;
String orderkey() default "";
String transmethod() default "";
// 额外参数
String otherPara() default "";
}