Explorar el Código

feat(types): 添加安全策略配置securityConfiguration接口

LuoHaoxuan hace 3 años
padre
commit
4bbb6cbd48
Se han modificado 1 ficheros con 10 adiciones y 0 borrados
  1. 10 0
      types/src/interface/user.ts

+ 10 - 0
types/src/interface/user.ts

@@ -129,3 +129,13 @@ export interface IViewingProjectUser {
   enterpriseID: string;
   enterpriseName: string;
 }
+
+// 安全策略配置
+export interface securityConfiguration {
+  ID: string;
+  loginTimes: number;
+  accountLockTimes: number;
+  passwordVerification: number;
+  passwordValidity: number;
+  logReserveDay: number;
+}