Sfoglia il codice sorgente

feat(types): IMessageData字段补充title字段

wupeixin 3 anni fa
parent
commit
ac4679557d
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      types/src/interface/message.ts

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

@@ -67,10 +67,10 @@ type TypeMessageData = 'approval' | 'system'
 export interface IMessageData {
   ID: string;
   userID: string;
-  title: string;
   createTime: number;
   status: string;
   process:IProcess;
   unRead: boolean;
   type: TypeMessageData;
+  title: string;
 }