地质所 沉降监测网建设项目
suerwei
2024-05-28 bc9f9097d1da4d431fdfe670d77521fd705baf53
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(); //事件名称
}