From 6294dd1b096fd4a77864dd4680d58a814acd7a08 Mon Sep 17 00:00:00 2001 From: Junjie <540245094@qq.com> Date: 星期二, 03 九月 2024 14:38:20 +0800 Subject: [PATCH] #缓存队列bug fixed --- zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/core/entity/TaskLog.java | 13 ++++++++++--- 1 files changed, 10 insertions(+), 3 deletions(-) diff --git a/zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/core/entity/TaskLog.java b/zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/core/entity/TaskLog.java index cfce319..fe73d77 100644 --- a/zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/core/entity/TaskLog.java +++ b/zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/core/entity/TaskLog.java @@ -33,7 +33,7 @@ * ID */ @ApiModelProperty(value= "ID") - @TableId(value = "id", type = IdType.INPUT) + @TableId(value = "id", type = IdType.AUTO) private Long id; /** @@ -247,9 +247,15 @@ @ApiModelProperty(value= "鏄惁璁板綍搴撲綅淇℃伅") private String recordLoc; + /** + * WMS浠诲姟鍙� + */ + @ApiModelProperty(value= "WMS浠诲姟鍙�") + private String wmsTaskNo; + public TaskLog() {} - public TaskLog(String uuid,Long busId,String taskNo,String serialNum,String title,Long taskSts,Long taskCtg,Integer priority,String originSite,String originLoc,String destSite,String destLoc,Integer emptyMk,String zpallet,String phase,Date ioTime,Date startTime,Date endTime,Date exceptionTime,String exceptionDesc,Long hostId,Integer status,Integer deleted,Date createTime,Long createBy,Date updateTime,Long updateBy,String memo,Integer shuttleNo,Integer liftNo,Integer crnNo,Integer rgvNo,Integer agvNo,String recordLoc) { + public TaskLog(String uuid, Long busId, String taskNo, String serialNum, String title, Long taskSts, Long taskCtg, Integer priority, String originSite, String originLoc, String destSite, String destLoc, Integer emptyMk, String zpallet, String phase, Date ioTime, Date startTime, Date endTime, Date exceptionTime, String exceptionDesc, Long hostId, Integer status, Integer deleted, Date createTime, Long createBy, Date updateTime, Long updateBy, String memo, Integer shuttleNo, Integer liftNo, Integer crnNo, Integer rgvNo, Integer agvNo, String recordLoc, String wmsTaskNo) { this.uuid = uuid; this.busId = busId; this.taskNo = taskNo; @@ -284,9 +290,10 @@ this.rgvNo = rgvNo; this.agvNo = agvNo; this.recordLoc = recordLoc; + this.wmsTaskNo = wmsTaskNo; } -// TaskLog taskLog = new TaskLog( + // TaskLog taskLog = new TaskLog( // null, // 缂栧彿 // null, // 鎬荤嚎 // null, // 浠诲姟鍙� -- Gitblit v1.9.1