添加设备log

This commit is contained in:
huangzj
2023-08-08 09:51:55 +08:00
parent 8bb82cf859
commit 0054466fd9
4 changed files with 86 additions and 2 deletions

View File

@@ -0,0 +1,23 @@
package com.njcn.web.advice;
import org.springframework.core.annotation.Order;
import java.lang.annotation.*;
/**
* Description:
* Date: 2023/8/7 18:47【需求编号】
*
* @author clam
* @version V1.0.0
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
@Documented
public @interface DeviceLog {
String operateType() default "";
}