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
425 B
Java
28 lines
425 B
Java
8 months ago
|
package com.engine.jclproduct.annotation;
|
||
|
|
||
|
import java.lang.annotation.*;
|
||
|
|
||
|
/**
|
||
|
* @Author liang.cheng
|
||
|
* @Date 2024/10/25 1:48 PM
|
||
|
* @Description:
|
||
|
* @Version 1.0
|
||
|
*/
|
||
|
@Target({ElementType.ANNOTATION_TYPE})
|
||
|
@Retention(RetentionPolicy.RUNTIME)
|
||
|
@Documented
|
||
|
public @interface WeaverTableOperate {
|
||
|
|
||
|
String text() default "";
|
||
|
|
||
|
int labelId() default -1;
|
||
|
|
||
|
String href() default "";
|
||
|
|
||
|
String index() default "0";
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
}
|