You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
480 B
Java
28 lines
480 B
Java
3 years ago
|
package com.engine.organization.annotation;
|
||
|
|
||
|
import java.lang.annotation.*;
|
||
|
|
||
|
/**
|
||
|
* 列表操作按钮
|
||
|
* <p>Copyright: Copyright (c) 2022</p>
|
||
|
* <p>Company: 泛微软件</p>
|
||
|
*
|
||
|
* @author qiantao
|
||
|
* @version 1.0
|
||
|
**/
|
||
|
@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";
|
||
|
|
||
|
|
||
|
}
|