From 99441b534e280cf5b8bdab4e267cb496b77c62b3 Mon Sep 17 00:00:00 2001 From: wangxiang <1827945911@qq.com> Date: Sat, 2 Sep 2023 00:10:43 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=A7=A3=E9=99=A4=E8=B5=84=E6=BA=90?= =?UTF-8?q?=E6=9C=8D=E5=8A=A1=E5=99=A8=E8=B7=9F=E6=8E=88=E6=9D=83=E6=9C=8D?= =?UTF-8?q?=E5=8A=A1=E8=80=A6=E5=90=88=E5=85=B3=E7=B3=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/common/base/entity/index.ts | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/src/api/common/base/entity/index.ts b/src/api/common/base/entity/index.ts index 651d049..7296b4a 100644 --- a/src/api/common/base/entity/index.ts +++ b/src/api/common/base/entity/index.ts @@ -23,12 +23,13 @@ export interface CasUser { avatar: string; loginIp: string; loginTime: string; - createById: string; - createByName: string; - createTime: string; - updateById: string; - updateByName: string; - updateTime: string; + ssoStatus: string; + ssoCreateById: string; + ssoCreateByName: string; + ssoCreateTime: string; + ssoUpdateById: string; + ssoUpdateByName: string; + ssoUpdateTime: string; remarks: string; roleId: string; tenantId: string; @@ -62,6 +63,18 @@ export interface KiccUser extends CasUser { permissions: string[]; // 多租户ID集合 tenantIds: string[]; + // 创建ID + createById: string; + // 创建者 + createByName: string; + // 创建时间 + createTime: string; + // 更新ID + updateById: string; + // 更新人 + updateByName: string; + // 更新时间 + updateTime: string; [key: string]: any; }