@ruiapp/rapid-core 0.7.5 → 0.7.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/types.d.ts CHANGED
@@ -302,6 +302,10 @@ export interface RpdDataModelProperty {
302
302
  * 当设置了 linkTableName 时,可以设置关联关系表所在的 Schema。
303
303
  */
304
304
  linkSchema?: string;
305
+ /**
306
+ * 数据字典编码。当类型为option时设置
307
+ */
308
+ dataDictionary?: string;
305
309
  /**
306
310
  * 当删除实体时,针对关系属性的联动处理。
307
311
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ruiapp/rapid-core",
3
- "version": "0.7.5",
3
+ "version": "0.7.6",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/types.ts CHANGED
@@ -337,6 +337,11 @@ export interface RpdDataModelProperty {
337
337
  */
338
338
  linkSchema?: string;
339
339
 
340
+ /**
341
+ * 数据字典编码。当类型为option时设置
342
+ */
343
+ dataDictionary?: string;
344
+
340
345
  /**
341
346
  * 当删除实体时,针对关系属性的联动处理。
342
347
  */