地质所 沉降监测网建设项目
chenhuan
2024-06-25 880c8f54cddc8533f00f674da3f14c2cf0d34340
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(); //事件名称
}