@regenbio/regenbio-components-react 1.3.23 → 1.3.25
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.
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 基础实体类
|
|
3
|
+
*/
|
|
4
|
+
export interface BaseDO extends BaseRelativeDO {
|
|
5
|
+
/** 逻辑删除(1:删除,0:未删除) */
|
|
6
|
+
deleted: 0 | 1;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* 基础关系表实体类
|
|
10
|
+
*/
|
|
11
|
+
export interface BaseRelativeDO {
|
|
12
|
+
/** 主键ID */
|
|
13
|
+
guid: string;
|
|
14
|
+
/** 状态(1:启用,0:停用) */
|
|
15
|
+
status: 0 | 1;
|
|
16
|
+
/** 乐观锁 */
|
|
17
|
+
version: number;
|
|
18
|
+
/** 创建人 */
|
|
19
|
+
creator: string;
|
|
20
|
+
/** 创建时间 */
|
|
21
|
+
createTime: Date;
|
|
22
|
+
/** 更新人 */
|
|
23
|
+
modifier: string;
|
|
24
|
+
/** 更新时间 */
|
|
25
|
+
modifyTime: Date;
|
|
26
|
+
/** 是否禁止修改(1:是,0:否) */
|
|
27
|
+
forbidModify: number;
|
|
28
|
+
}
|