Explorar el Código

feat(types): enterpriseSession 添加date 字段

qinlaiqiao hace 4 años
padre
commit
db570cc1d7
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      types/src/interface/enterprise.ts

+ 2 - 1
types/src/interface/enterprise.ts

@@ -113,6 +113,7 @@ export interface IEnterpriseSession {
   sessionID: string;
   createTime: number;
   effectiveDuration: number;
-  enterpriseID: string;
+  enterpriseID: string; // 企业 ID (如果没有enterpriseID,则表示为个人版登录)
+  date: string; // 日期(只包含年月日)
   userID: string;
 }