From 1b5a723592ea63e5eec0bdeef7855b9c40e9df71 Mon Sep 17 00:00:00 2001 From: zhangherong <571457620@qq.com> Date: 星期四, 03 七月 2025 17:46:35 +0800 Subject: [PATCH] art:三保-设计修改 --- lxzn-boot-base-core/src/main/java/org/jeecg/common/aspect/annotation/FieldQuery.java | 37 +++++++++++++++++++++++++++++++++++++ 1 files changed, 37 insertions(+), 0 deletions(-) diff --git a/lxzn-boot-base-core/src/main/java/org/jeecg/common/aspect/annotation/FieldQuery.java b/lxzn-boot-base-core/src/main/java/org/jeecg/common/aspect/annotation/FieldQuery.java new file mode 100644 index 0000000..c8dc56b --- /dev/null +++ b/lxzn-boot-base-core/src/main/java/org/jeecg/common/aspect/annotation/FieldQuery.java @@ -0,0 +1,37 @@ +package org.jeecg.common.aspect.annotation; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +/** + * 瀛楀吀娉ㄨВ + */ +@Target(ElementType.FIELD) +@Retention(RetentionPolicy.RUNTIME) +public @interface FieldQuery{ + /** + * 鍏宠仈鏁版嵁琛� + * @return + */ + String dicTable() default ""; + + /** + * 鏁版嵁Text + * @return + */ + String dicText() default ""; + + /** + * 鏁版嵁code鏁扮粍 + * @return + */ + String[] dicCode(); + + /** + * 鏁版嵁鍙傛暟鏁扮粍锛屽弬鏁拌窡code鏁扮粍涓�涓�瀵瑰簲 + * @return + */ + String[] dicParams(); +} -- Gitblit v1.9.3