From d1ef13d1f116e69a7f44e78d64fd0fe4ce2cad80 Mon Sep 17 00:00:00 2001 From: Junjie <fallin.jie@qq.com> Date: 星期一, 10 二月 2025 13:17:10 +0800 Subject: [PATCH] # --- src/main/java/com/zy/asrs/entity/BasShuttle.java | 112 +++++++++++++------------------------------------------ 1 files changed, 27 insertions(+), 85 deletions(-) diff --git a/src/main/java/com/zy/asrs/entity/BasShuttle.java b/src/main/java/com/zy/asrs/entity/BasShuttle.java index 999eb2b..1ee828b 100644 --- a/src/main/java/com/zy/asrs/entity/BasShuttle.java +++ b/src/main/java/com/zy/asrs/entity/BasShuttle.java @@ -9,12 +9,6 @@ import java.text.SimpleDateFormat; import java.util.Date; import org.springframework.format.annotation.DateTimeFormat; -import com.core.common.SpringUtils; -import com.zy.system.service.UserService; -import com.zy.system.entity.User; -import java.text.SimpleDateFormat; -import java.util.Date; - import io.swagger.annotations.ApiModelProperty; import lombok.Data; import com.baomidou.mybatisplus.annotations.TableName; @@ -41,9 +35,9 @@ private Integer status; /** - * 浣滀笟鎬� + * 褰撳墠灏忚溅鐘舵�侊紙鍐呴儴鑷垜缁存姢锛� */ - @ApiModelProperty(value= "浣滀笟鎬�") + @ApiModelProperty(value= "褰撳墠灏忚溅鐘舵�侊紙鍐呴儴鑷垜缁存姢锛�") @TableField("shuttle_status") private Integer shuttleStatus; @@ -53,45 +47,6 @@ @ApiModelProperty(value= "浠诲姟鍙�") @TableField("wrk_no") private Integer wrkNo; - - /** - * 鎺� - */ - @ApiModelProperty(value= "鎺�") - private Integer row; - - /** - * 鍒� - */ - @ApiModelProperty(value= "鍒�") - private Integer bay; - - /** - * 灞� - */ - @ApiModelProperty(value= "灞�") - private Integer lev; - - /** - * 鍘嗗彶鎺� - */ - @ApiModelProperty(value= "鍘嗗彶鎺�") - @TableField("his_row") - private Integer hisRow; - - /** - * 鍘嗗彶鍒� - */ - @ApiModelProperty(value= "鍘嗗彶鍒�") - @TableField("his_bay") - private Integer hisBay; - - /** - * 鍘嗗彶灞� - */ - @ApiModelProperty(value= "鍘嗗彶灞�") - @TableField("his_lev") - private Integer hisLev; /** * 鏆傚瓨搴撲綅 @@ -151,32 +106,40 @@ private String memo; /** - * 鎻愬崌鏈哄彿 + * 浣滀笟鏍囪 */ - @ApiModelProperty(value= "鎻愬崌鏈哄彿") - @TableField("lift_no") - private Integer liftNo; + @ApiModelProperty(value= "浣滀笟鏍囪") + @TableField("pak_mk") + private Boolean pakMk; /** - * 鏍囪 + * 灏忚溅杩愯閫熷害 */ - @ApiModelProperty(value= "鏍囪") - @TableField("pak_mk") - private String pakMk; + @ApiModelProperty(value= "灏忚溅杩愯閫熷害") + @TableField("run_speed") + private Integer runSpeed; + + /** + * 璁惧鐘舵�� + */ + @ApiModelProperty(value= "璁惧鐘舵��") + @TableField("device_status") + private String deviceStatus; + + /** + * 灏忚溅绂佺敤妤煎眰 + */ + @ApiModelProperty(value= "灏忚溅绂佺敤妤煎眰") + @TableField("disable_lev") + private String disableLev; public BasShuttle() {} - public BasShuttle(Integer shuttleNo,Integer status,Integer shuttleStatus,Integer wrkNo,Integer row,Integer bay,Integer lev,Integer hisRow,Integer hisBay,Integer hisLev,String idleLoc,Integer autoCharge,Integer chargeLine,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo,Integer liftNo) { + public BasShuttle(Integer shuttleNo, Integer status, Integer shuttleStatus, Integer wrkNo, String idleLoc, Integer autoCharge, Integer chargeLine, Long createBy, Date createTime, Long updateBy, Date updateTime, String memo, Boolean pakMk, String deviceStatus) { this.shuttleNo = shuttleNo; this.status = status; this.shuttleStatus = shuttleStatus; this.wrkNo = wrkNo; - this.row = row; - this.bay = bay; - this.lev = lev; - this.hisRow = hisRow; - this.hisBay = hisBay; - this.hisLev = hisLev; this.idleLoc = idleLoc; this.autoCharge = autoCharge; this.chargeLine = chargeLine; @@ -185,30 +148,9 @@ this.updateBy = updateBy; this.updateTime = updateTime; this.memo = memo; - this.liftNo = liftNo; + this.pakMk = pakMk; + this.deviceStatus = deviceStatus; } - -// BasShuttle basShuttle = new BasShuttle( -// null, // 鍥涘悜绌挎杞﹀彿[闈炵┖] -// null, // 鐘舵�� -// null, // 浣滀笟鎬� -// null, // 浠诲姟鍙� -// null, // 鎺� -// null, // 鍒� -// null, // 灞� -// null, // 鍘嗗彶鎺� -// null, // 鍘嗗彶鍒� -// null, // 鍘嗗彶灞� -// null, // 鏆傚瓨搴撲綅 -// null, // 鑷姩鍏呯數 -// null, // 鐢甸噺绾� -// null, // 娣诲姞浜哄憳 -// null, // 娣诲姞鏃堕棿 -// null, // 淇敼浜哄憳 -// null, // 淇敼鏃堕棿 -// null, // 澶囨敞 -// null // 鎻愬崌鏈哄彿 -// ); public String getStatus$(){ if (null == this.status){ return null; } -- Gitblit v1.9.1