yuan
2026-07-15 e9fb84276805a01d6e665bc04b0999c842433d55
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";
}