From 9253cb6be1350140769b290db640c517c0c1dbbc Mon Sep 17 00:00:00 2001
From: lyh <925863403@qq.com>
Date: 星期四, 03 七月 2025 15:07:34 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 lxzn-boot-base-core/src/main/java/org/jeecg/common/aspect/annotation/DictExt.java |   38 ++++++++++++++++++++++++++++++++++++++
 1 files changed, 38 insertions(+), 0 deletions(-)

diff --git a/lxzn-boot-base-core/src/main/java/org/jeecg/common/aspect/annotation/DictExt.java b/lxzn-boot-base-core/src/main/java/org/jeecg/common/aspect/annotation/DictExt.java
new file mode 100644
index 0000000..a8b69d0
--- /dev/null
+++ b/lxzn-boot-base-core/src/main/java/org/jeecg/common/aspect/annotation/DictExt.java
@@ -0,0 +1,38 @@
+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 DictExt {
+
+    /**
+     * 鏁版嵁瀛楀吀琛�
+     * @return
+     */
+    String dicTable() default "";
+
+    /**
+     * 鏁版嵁Text
+     * @return
+     */
+    String dicText() default "";
+
+    /**
+     * 鏁版嵁code鏁扮粍
+     * @return
+     */
+    String[] dicCode();
+
+    /**
+     * 鏁版嵁鍙傛暟鏁扮粍锛屽弬鏁拌窡code鏁扮粍涓�涓�瀵瑰簲
+     * @return
+     */
+    String[] dicParams();
+}

--
Gitblit v1.9.3