Browse Source

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

wupeixin 3 năm trước cách đây
mục cha
commit
7857924e4c
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      types/src/interface/message.ts

+ 1 - 1
types/src/interface/message.ts

@@ -76,5 +76,5 @@ export interface IMessageData {
   userName: string;
   phone?: string;
   process?:IProcess;
-  systemContent?:string;
+  content?:string;
 }