|
|
@@ -20,10 +20,14 @@ export interface IModifyUser {
|
|
|
ID: string;
|
|
|
name: string;
|
|
|
}
|
|
|
+export interface IModifiedVal {
|
|
|
+ label: string; // 名称
|
|
|
+ value: string; // 名称对应的值
|
|
|
+}
|
|
|
export interface IModifyInfo {
|
|
|
type: OperateType; // 操作类型
|
|
|
operateTarget: string; // 操作内容
|
|
|
- modifiedVal?: string; // 修改后的值
|
|
|
+ modifiedVal?: IModifiedVal; // 修改后的值
|
|
|
remark?: string; // 备注,需要的信息可以存在这
|
|
|
}
|
|
|
export interface ILogItem {
|