| 1234567891011121314151617181920212223 |
- package com.coffee.common.annotation;
- import com.coffee.common.enums.UserPlatformEnum;
- import java.lang.annotation.*;
- /**
- * 日志注解
- *
- * @author Kevin
- */
- @Target({ElementType.PARAMETER, ElementType.METHOD})
- @Retention(RetentionPolicy.RUNTIME)
- @Documented
- public @interface Log {
- String title() default "";
- /**
- * 用户平台
- */
- UserPlatformEnum userPlatform() default UserPlatformEnum.WEB;
- }
|