zhuo
2025-03-03 941cc225c9c1f840aa1ddbeb2e999ba0ccc9c71d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ruoyi.framework.annotation;
 
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
 
@Retention(RetentionPolicy.RUNTIME)
public @interface ValueTableShow {
 
    int value() default 1;
 
    String name() default "";
 
    int width() default 0;
 
}