Przeglądaj źródła

feat(types): IMessageData补充content字段并将某些字段设置为可选

wupeixin 3 lat temu
rodzic
commit
d1e8427b89
1 zmienionych plików z 3 dodań i 2 usunięć
  1. 3 2
      types/src/interface/message.ts

+ 3 - 2
types/src/interface/message.ts

@@ -69,11 +69,12 @@ export interface IMessageData {
   userID: string;
   userID: string;
   createTime: number;
   createTime: number;
   status: string;
   status: string;
-  process:IProcess;
   read: boolean;
   read: boolean;
   type: TypeMessageData;
   type: TypeMessageData;
   title: string;
   title: string;
   isShowProcess: boolean;
   isShowProcess: boolean;
   userName: string;
   userName: string;
-  phone: string
+  phone?: string;
+  process?:IProcess;
+  systemContent?:string;
 }
 }