mirror of
https://github.com/continew-org/continew-admin.git
synced 2025-09-24 15:00:09 +08:00
refactor: 💥 优化系统内置类型数据标识
1.系统内置类型数据标识由 type 调整为 is_system 2.优化部分表的非空字段
This commit is contained in:
@@ -10,7 +10,7 @@ export interface DataRecord {
|
||||
description?: string;
|
||||
sort: number;
|
||||
status?: number;
|
||||
type?: number;
|
||||
isSystem?: boolean;
|
||||
createUserString?: string;
|
||||
createTime?: string;
|
||||
updateUserString?: string;
|
||||
|
@@ -8,6 +8,7 @@ export interface DataRecord {
|
||||
name: string;
|
||||
code: string;
|
||||
description?: string;
|
||||
isSystem: boolean;
|
||||
createUser?: string;
|
||||
createTime?: string;
|
||||
updateUser?: string;
|
||||
|
@@ -13,7 +13,7 @@ export interface DataRecord {
|
||||
dataScope: number;
|
||||
deptIds?: Array<number>;
|
||||
status?: number;
|
||||
type?: number;
|
||||
isSystem?: boolean;
|
||||
createUserString?: string;
|
||||
createTime?: string;
|
||||
updateUserString?: string;
|
||||
|
@@ -12,7 +12,7 @@ export interface DataRecord {
|
||||
phone?: string;
|
||||
description?: string;
|
||||
status?: number;
|
||||
type?: number;
|
||||
isSystem?: boolean;
|
||||
pwdResetTime?: string;
|
||||
createUserString?: string;
|
||||
createTime?: string;
|
||||
|
Reference in New Issue
Block a user