refactor: 💥 优化系统内置类型数据标识

1.系统内置类型数据标识由 type 调整为 is_system
2.优化部分表的非空字段
This commit is contained in:
2023-09-17 23:53:25 +08:00
parent 2755bc8479
commit 8a02401a24
30 changed files with 135 additions and 160 deletions

View File

@@ -10,7 +10,7 @@ export interface DataRecord {
description?: string;
sort: number;
status?: number;
type?: number;
isSystem?: boolean;
createUserString?: string;
createTime?: string;
updateUserString?: string;

View File

@@ -8,6 +8,7 @@ export interface DataRecord {
name: string;
code: string;
description?: string;
isSystem: boolean;
createUser?: string;
createTime?: string;
updateUser?: string;

View File

@@ -13,7 +13,7 @@ export interface DataRecord {
dataScope: number;
deptIds?: Array<number>;
status?: number;
type?: number;
isSystem?: boolean;
createUserString?: string;
createTime?: string;
updateUserString?: string;

View File

@@ -12,7 +12,7 @@ export interface DataRecord {
phone?: string;
description?: string;
status?: number;
type?: number;
isSystem?: boolean;
pwdResetTime?: string;
createUserString?: string;
createTime?: string;