chenrui
2025-02-27 894e2c6d4d9a6a1d5b8906e83d82c6e190d28f3a
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;
 
}