de/sdk/common/src/main/java/io/dataease/log/DeLog.java
2024-01-22 16:49:06 +08:00

22 lines
377 B
Java

package io.dataease.log;
import io.dataease.constant.LogOT;
import io.dataease.constant.LogST;
import java.lang.annotation.*;
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface DeLog {
String id() default "";
String pid() default "";
LogST st() default LogST.PANEL;
LogOT ot();
String stExp() default "";
}