gongchunyi
15 小时以前 c698a63d38add7fe43440099f59049b290006602
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ruoyi.home.annotation;
 
import java.lang.annotation.*;
 
/**
 * <br>
 * 统计类型默认值注解
 * 默认 type = 1
 * </br>
 *
 * @author deslrey
 * @version 1.0
 * @since 2026/2/5
 */
 
@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface DefaultType {
 
    String value() default "1";
}