|
|
|
@ -14,6 +14,7 @@ import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @Description : 作业记录表
|
|
|
|
@ -49,8 +50,9 @@ public class WmsActionLog extends BaseBean {
|
|
|
|
|
@ApiParam(value = "交易类型编号")
|
|
|
|
|
public String transTypeCode;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "交易类型名称")
|
|
|
|
|
public transient String transTypeName;
|
|
|
|
|
public String transTypeName;
|
|
|
|
|
|
|
|
|
|
@Column(name="AG_ID")
|
|
|
|
|
@ApiParam(value = "作业流程编号", example = "1")
|
|
|
|
@ -90,21 +92,25 @@ public class WmsActionLog extends BaseBean {
|
|
|
|
|
@ApiParam(value = "结束作业时间")
|
|
|
|
|
public String endTime;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
|
|
@ApiParam(value="开始作业时间查询用,查询起始日期",example = "2018-01-01 01:00:00")
|
|
|
|
|
public transient String startTimeStart;
|
|
|
|
|
public String startTimeStart;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
|
|
@ApiParam(value="开始作业时间查询用,查询结束日期",example = "2018-12-31 23:59:59")
|
|
|
|
|
public transient String startTimeEnd;
|
|
|
|
|
public String startTimeEnd;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
|
|
@ApiParam(value="结束作业时间查询用,查询起始日期",example = "2018-01-01 01:00:00")
|
|
|
|
|
public transient String endTimeStart;
|
|
|
|
|
public String endTimeStart;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
|
|
@ApiParam(value="结束作业时间查询用,查询结束日期",example = "2018-12-31 23:59:59")
|
|
|
|
|
public transient String endTimeEnd;
|
|
|
|
|
public String endTimeEnd;
|
|
|
|
|
|
|
|
|
|
// 状态:1=创建,10=处理中,20=已完成
|
|
|
|
|
@Column(name="ACTION_STATUS")
|
|
|
|
|