This commit is contained in:
abing
2025-06-13 11:40:16 +08:00
parent 437bf23f09
commit 6f846f5410
1787 changed files with 212112 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
package com.openhis.annotation;
import java.lang.annotation.*;
import com.openhis.enums.ElepServiceAdrEnum;
import com.openhis.enums.ServiceAdrEnum;
/**
* 接口处理器注解
*/
@Documented
@Inherited
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface ElepHandlerInt {
ElepServiceAdrEnum value();
}