From 4734a0b66eecd3828aff21e79509e68b042fceee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=AF=9B=E7=90=83?= Date: Mon, 14 Sep 2020 17:35:02 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BC=81=E4=B8=9A=E7=BB=91=E5=AE=9A?= =?UTF-8?q?=E9=92=89=E9=92=89=E5=AD=97=E6=AE=B5=E6=94=AF=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/schemas/Organization.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/schemas/Organization.ts b/src/schemas/Organization.ts index 5bbbf9aeb..15e85d47f 100644 --- a/src/schemas/Organization.ts +++ b/src/schemas/Organization.ts @@ -50,6 +50,7 @@ export interface OrganizationSchema { py: string staffTypes: string[] role: Role + isBindDD: boolean } const Schema: SchemaDef = { @@ -76,7 +77,8 @@ const Schema: SchemaDef = { projectIds: { type: RDBType.LITERAL_ARRAY }, py: { type: RDBType.STRING }, role: { type: RDBType.OBJECT }, - staffTypes: { type: RDBType.OBJECT } + staffTypes: { type: RDBType.OBJECT }, + isBindDD: { type: RDBType.BOOLEAN } } schemaColl.add({ name: 'Organization', schema: Schema })