2025-02-28 17:56:48 +08:00
|
|
|
package io.gisbi.log;
|
2025-02-27 14:44:08 +08:00
|
|
|
|
2025-02-28 17:56:48 +08:00
|
|
|
import io.gisbi.constant.LogOT;
|
|
|
|
import io.gisbi.constant.LogST;
|
2025-02-27 14:44:08 +08:00
|
|
|
|
|
|
|
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 "";
|
|
|
|
}
|