...
|
...
|
@@ -16,20 +16,9 @@ const ( |
|
|
|
|
|
//OrderLogDescript 描述日志内容
|
|
|
type OrderLogDescript struct {
|
|
|
Title string `json:"title"` //标题
|
|
|
Item string `json:"item"` //修改的项目
|
|
|
Action string `json:"action"` //执行的操作
|
|
|
Result string `json:"result"` //结果
|
|
|
}
|
|
|
|
|
|
//OrderLogContentItem 记录订单的相关属性值的修改
|
|
|
type OrderLogContent struct {
|
|
|
OrderId string `json:"orderId"` //订单id
|
|
|
GoodId string `json:"goodId"` //货品id
|
|
|
Table string `json:"Table"` //名称标题
|
|
|
Item string `json:"item"` //修改的数据字段
|
|
|
FormerValue string `json:"formerValue"` //旧值
|
|
|
NewValue string `json:"newValue"` //新值
|
|
|
Title string `json:"title"` //标题
|
|
|
Item string `json:"item"` //修改的项目
|
|
|
Action []string `json:"action"` //执行的操作
|
|
|
}
|
|
|
|
|
|
//OrderLog 订单修改记录
|
...
|
...
|
@@ -42,7 +31,6 @@ type OrderLog struct { |
|
|
OperatorType string `json:"operatorType"` //操作人员的类型
|
|
|
LogAction string `json:"logAction"` //执行动作
|
|
|
Descript []OrderLogDescript `json:"descript"` //描述日志内容
|
|
|
Content []OrderLogContent `json:"content"` //记录订单的操作动作
|
|
|
DataFrom string `json:"dataFrom"` //修改操作的来源:"web_admin"
|
|
|
}
|
|
|
|
...
|
...
|
|