adtec-core-package 0.7.2 → 0.7.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adtec-core-package",
3
- "version": "0.7.2",
3
+ "version": "0.7.3",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "scripts": {
@@ -25,4 +25,6 @@ export interface BaseEntity {
25
25
 
26
26
  // 创建者名字,同样该字段在数据库表结构对应的映射中不存在(exist = false),仅在代码逻辑中有使用
27
27
  createByName?: string
28
+
29
+ orgId?:string
28
30
  }