Procházet zdrojové kódy

feat(types): enterpriseSession 添加date 字段

qinlaiqiao před 4 roky
rodič
revize
db570cc1d7
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  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;
 }