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