Browse Source

feat(types): 增加描述

zhangweicheng 4 years ago
parent
commit
055c5b04f7
1 changed files with 1 additions and 0 deletions
  1. 1 0
      types/src/interface/editLog.ts

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

@@ -9,4 +9,5 @@ export interface IEditLog<T = any> {
   actionName?: ActionName; // 除了增删改查,还会有更复杂的操作,用这个来区分
   userID: string; // 用户
   createdTime: number; // 生成时间
+  description?: string; // 操作说明
 }