地质所 沉降监测网建设项目
suerwei
2024-05-22 e2cf4dc0a1142716688e853d226c3e4ce66383da
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.javaweb.applicationEvent;
 
import java.lang.annotation.*;
 
/**
 * 系统事件注解
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface ApplicationEvent {
    ApplicationEventDefined[] value(); //事件名称
}