package com.ruoyi.home.annotation; import java.lang.annotation.*; /** *
* 统计类型默认值注解 * 默认 type = 1 *
* * @author deslrey * @version 1.0 * @since 2026/2/5 */ @Target(ElementType.PARAMETER) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface DefaultType { String value() default "1"; }