This commit is contained in:
淋雨一直走YH
2023-09-28 15:38:29 +08:00
commit 7bc57c75dc
1480 changed files with 144393 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
package mjkf.xinke.common.annotation;
import java.lang.annotation.*;
/**
* 自定义日志注解
*
*
* @date 2022/6/20 14:25
**/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface CommonLog {
/**
* 日志的名称,例如:"修改菜单"
*/
String value() default "未命名";
}