From 08c96e4b797573fd64b42a52a2f9b9805d59d3e3 Mon Sep 17 00:00:00 2001 From: Junjie <xjj@123> Date: 星期日, 07 四月 2024 14:03:54 +0800 Subject: [PATCH] # --- zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/core/entity/BasShuttle.java | 33 +++++++++++++++------------------ 1 files changed, 15 insertions(+), 18 deletions(-) diff --git a/zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/core/entity/BasShuttle.java b/zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/core/entity/BasShuttle.java index 7d84ce8..3846f92 100644 --- a/zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/core/entity/BasShuttle.java +++ b/zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/core/entity/BasShuttle.java @@ -32,10 +32,16 @@ private static final long serialVersionUID = 1L; /** + * ID + */ + @ApiModelProperty(value= "ID") + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** * 鍥涘悜绌挎杞﹀彿 */ @ApiModelProperty(value= "鍥涘悜绌挎杞﹀彿") - @TableId(value = "shuttle_no", type = IdType.AUTO) private Integer shuttleNo; /** @@ -54,7 +60,7 @@ * 浠诲姟鍙� */ @ApiModelProperty(value= "浠诲姟鍙�") - private Integer wrkNo; + private Integer taskNo; /** * 鏆傚瓨搴撲綅 @@ -125,24 +131,15 @@ @ApiModelProperty(value= "鎵�灞炴満鏋�") private Long hostId; + /** + * 璁惧鐘舵�� + */ + @ApiModelProperty(value= "璁惧鐘舵��") + private String protocol; + public BasShuttle() {} - public BasShuttle(Integer status,Integer shuttleStatus,Integer wrkNo,String idleLoc,Integer autoCharge,Integer chargeLine,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo,Integer runSpeed,Integer deleted,Long hostId) { - this.status = status; - this.shuttleStatus = shuttleStatus; - this.wrkNo = wrkNo; - this.idleLoc = idleLoc; - this.autoCharge = autoCharge; - this.chargeLine = chargeLine; - this.createBy = createBy; - this.createTime = createTime; - this.updateBy = updateBy; - this.updateTime = updateTime; - this.memo = memo; - this.runSpeed = runSpeed; - this.deleted = deleted; - this.hostId = hostId; - } + // BasShuttle basShuttle = new BasShuttle( // null, // 鐘舵�� -- Gitblit v1.9.1