Преглед изворни кода

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

wupeixin пре 3 година
родитељ
комит
d1e8427b89
1 измењених фајлова са 3 додато и 2 уклоњено
  1. 3 2
      types/src/interface/message.ts

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

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