Commit 358910ba authored by 周健威's avatar 周健威

修改代码

parent 2f8fb67a
...@@ -52,7 +52,7 @@ public class OrderLog implements Serializable { ...@@ -52,7 +52,7 @@ public class OrderLog implements Serializable {
* 操作者id,另外 -1为系统 * 操作者id,另外 -1为系统
*/ */
@Column(name = "log_user_id") @Column(name = "log_user_id")
@ApiModelProperty(value = "操作者id,另外 -1为系统") @ApiModelProperty(value = "操作者id,另外 -1为系统 -1+id 为后台人员")
private Integer logUserId; private Integer logUserId;
/** /**
...@@ -70,11 +70,25 @@ public class OrderLog implements Serializable { ...@@ -70,11 +70,25 @@ public class OrderLog implements Serializable {
private Long crtTime; private Long crtTime;
/** /**
* 日志类型 11--创建订单;12--创建订单; * 更新时间
*/
@Column(name = "upd_time")
@ApiModelProperty(value = "更新时间", hidden = true )
private Long updTime;
/**
* 日志类型 101--创建订单;102--;
*/ */
@Column(name = "type") @Column(name = "type")
@ApiModelProperty(value = "日志类型 11--创建订单;12--创建订单;") @ApiModelProperty(value = "日志类型 101--创建订单;102--创建订单;201--")
private Integer type; private Integer type;
/**
* 详情
*/
@Column(name = "detail")
@ApiModelProperty(value = "详情")
private Integer detail;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment