فهرست منبع

Merge branch 'master' of http://192.168.1.41:3000/SmartCost/SCCommon

zhangweicheng 4 سال پیش
والد
کامیت
b5eeaa5936
2فایلهای تغییر یافته به همراه3 افزوده شده و 0 حذف شده
  1. 2 0
      types/src/interface/report.ts
  2. 1 0
      types/src/interface/socket.ts

+ 2 - 0
types/src/interface/report.ts

@@ -4,6 +4,7 @@ export interface ReportFlags{
 }
 }
 
 
 export interface ReportSubTree {
 export interface ReportSubTree {
+  UUID:string,
   nodeType: number;
   nodeType: number;
   refId: number;
   refId: number;
   name: string;
   name: string;
@@ -14,6 +15,7 @@ export interface ReportSubTree {
 
 
 }
 }
 export interface ReportTree {
 export interface ReportTree {
+  UUID:string,
   compilationId: string;
   compilationId: string;
   userId: string;
   userId: string;
   released: boolean;
   released: boolean;

+ 1 - 0
types/src/interface/socket.ts

@@ -2,4 +2,5 @@
 export enum SocketEvent {
 export enum SocketEvent {
   TEST = 'test',
   TEST = 'test',
   JOIN = 'join',
   JOIN = 'join',
+  NOTIFY = 'notify',
 }
 }