|
|
@@ -81,8 +81,8 @@ export interface ISimpleMessageData {
|
|
|
businessID?: string;
|
|
|
title: string;
|
|
|
userID: string;
|
|
|
- status: string;
|
|
|
- type: TypeMessageData;
|
|
|
+ status?: string;
|
|
|
+ type?: TypeMessageData;
|
|
|
content?: IMessageContent;
|
|
|
}
|
|
|
|
|
|
@@ -91,10 +91,10 @@ export interface IMessageData extends ISimpleMessageData {
|
|
|
// userID: string;
|
|
|
createTime: number;
|
|
|
// status: string;
|
|
|
- read: boolean;
|
|
|
+ read?: boolean;
|
|
|
// type: TypeMessageData;
|
|
|
// title: string;
|
|
|
- isShowProcess: boolean;
|
|
|
+ isShowProcess?: boolean;
|
|
|
userName: string;
|
|
|
phone?: string;
|
|
|
process?: IProcess;
|