22 lines
377 B
Java
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 "";
|
||
|
}
|