|
|
@@ -63,6 +63,7 @@ interface IProcess {
|
|
|
approvalChangePrice: number;
|
|
|
approvaledPrice: number;
|
|
|
}
|
|
|
+type TypeMessageData = 'approval' | 'system'
|
|
|
export interface IMessageData {
|
|
|
ID: string;
|
|
|
userID: string;
|
|
|
@@ -70,5 +71,5 @@ export interface IMessageData {
|
|
|
status: string;
|
|
|
process:IProcess;
|
|
|
unRead: boolean;
|
|
|
- tags: string[];
|
|
|
+ type: TypeMessageData;
|
|
|
}
|