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

28 lines
425 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
* @Description: TODO
* @Date 2022/5/9
* @Version V1.0
2022-05-07 10:18:50 +08:00
**/
@Target({ElementType.ANNOTATION_TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface OrganizationTableOperate {
String text() default "";
int labelId() default -1;
String href() default "";
String index() default "0";
2022-05-30 16:21:15 +08:00
2022-05-07 10:18:50 +08:00
}