Kaynağa Gözat

feat(types): 调整修改记录结构

zhangweicheng 4 yıl önce
ebeveyn
işleme
df5e820d70
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      types/src/interface/editLog.ts

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

@@ -15,13 +15,13 @@ export interface ILogDetail<T = any> {
   newValue?: string; // 新值
   oldValue?: string; // 旧值
   field?: string; // 修改的field
+  processID?: string; // 流程ID
 }
 
 export interface IEditLog {
   projectID: string;
   billID: string;
   constructionID: string;
-  processID?: string; // 流程ID
   updateTime: number; // 最后修改时间
   code?: string;
   name?: string;