From b11b45122d2b6903e8970e8d55712f7a6a657e22 Mon Sep 17 00:00:00 2001 From: ludc Date: 星期三, 10 一月 2024 00:01:10 +0800 Subject: [PATCH] defaultReferDataGrid接口修改,实现兼容高级查询sql拼接;修改流水处理接口,增加流水处理跳出判断 --- Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/annotation/MdmSerialAlgorithm.java | 11 +++++++++-- 1 files changed, 9 insertions(+), 2 deletions(-) diff --git a/Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/annotation/MdmSerialAlgorithm.java b/Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/annotation/MdmSerialAlgorithm.java index 7e7fe98..c4d9e71 100644 --- a/Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/annotation/MdmSerialAlgorithm.java +++ b/Source/UBCS/ubcs-service/ubcs-code/src/main/java/com/vci/ubcs/code/annotation/MdmSerialAlgorithm.java @@ -1,5 +1,6 @@ package com.vci.ubcs.code.annotation; +import org.springframework.core.annotation.AliasFor; import org.springframework.stereotype.Component; import java.lang.annotation.ElementType; @@ -9,8 +10,8 @@ /** * 鑷畾涔夋祦姘寸畻娉曠殑娉ㄨВ - * @author weidy - * @date 2022-1-18 + * @author xiejun + * @date 2023-11-09 */ @Target({ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME) @@ -18,9 +19,13 @@ public @interface MdmSerialAlgorithm { /** + * bean鐨勫悕绉� * 鍊硷紝瀹為檯灏辨槸杩欎釜娉ㄨВ鎵�鍦ㄧ殑绫荤殑鍏ㄨ矾寰� * @return 鍊� */ + @AliasFor( + annotation = Component.class + ) String value() default ""; /** @@ -34,4 +39,6 @@ * @return 鎻忚堪 */ String description() default ""; + + String serialType() default ""; } -- Gitblit v1.9.3