@@ -55,3 +55,17 @@ export interface IMessage {
removable: boolean;
createTime: number;
}
+
+// 平台信息
+interface IProcess {
+ processID: string;
+ approvalOpinon:string;
+ approvalChangePrice: number;
+ approvaledPrice: number;
+}
+export interface IMessageData {
+ ID: string;
+ createTime: number;
+ status: string;
+ process:IProcess;