maven
2 天以前 6042800e38670760c259e9e3f3459f9f8172e8db
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";
}