自动化立体仓库 - WCS系统
#
Junjie
2025-04-22 e3c66c081abe7166e8cd6df48bdd7adfd385d5c9
src/main/java/com/zy/asrs/entity/BasLift.java
@@ -6,7 +6,6 @@
import java.text.SimpleDateFormat;
import java.util.Date;
import com.zy.core.model.protocol.NyShuttleProtocol;
import org.springframework.format.annotation.DateTimeFormat;
import com.core.common.SpringUtils;
import com.zy.system.service.UserService;
@@ -74,120 +73,22 @@
    private Boolean pakMk;
    /**
     * 设备状态
     */
    @ApiModelProperty(value= "设备状态")
    @TableField("device_status")
    private String deviceStatus;
    /**
     * 提升机坐标
     */
    @ApiModelProperty(value= "提升机坐标")
    @TableField("point")
    private NyShuttleProtocol.NyShuttlePointClass point;
    /**
     * 模式
     */
    @ApiModelProperty(value= "模式")
    @TableField("model")
    private Boolean model;
    /**
     * 忙闲
     */
    @ApiModelProperty(value= "忙闲")
    @TableField("busy")
    private Boolean busy;
    /**
     * 前超限
     */
    @ApiModelProperty(value= "前超限")
    @TableField("front_overrun")
    private Boolean frontOverrun;
    /**
     * 后超限
     */
    @ApiModelProperty(value= "后超限")
    @TableField("back_overrun")
    private Boolean backOverrun;
    /**
     * 左超限
     */
    @ApiModelProperty(value= "左超限")
    @TableField("left_overrun")
    private Boolean leftOverrun;
    /**
     * 右超限
     */
    @ApiModelProperty(value= "右超限")
    @TableField("right_overrun")
    private Boolean rightOverrun;
    /**
     * 超高
     */
    @ApiModelProperty(value= "超高")
    @TableField("over_height")
    private Boolean overHeight;
    /**
     * 超重
     */
    @ApiModelProperty(value= "超重")
    @TableField("over_weight")
    private Boolean overWeight;
    /**
     * 有托盘
     */
    @ApiModelProperty(value= "有托盘")
    @TableField("has_tray")
    private Boolean hasTray;
    /**
     * 有小车
     */
    @ApiModelProperty(value= "有小车")
    @TableField("has_car")
    private Boolean hasCar;
    /**
     * 设备故障
     */
    @ApiModelProperty(value= "设备故障")
    @TableField("device_error")
    private Boolean deviceError;
    /**
     * 任务地址
     */
    @ApiModelProperty(value= "任务地址")
    @TableField("task_address")
    private Integer taskAddress;
    /**
     * 目的地址
     */
    @ApiModelProperty(value= "目的地址")
    @TableField("dist_address")
    private Integer distAddress;
    /**
     * 已完成任务号
     */
    @ApiModelProperty(value= "已完成任务号")
    @TableField("complete_task_no")
    private Integer completeTaskNo;
    /**
     * 楼层
     */
    @ApiModelProperty(value= "楼层")
    @TableField("lev")
    private Integer lev;
    private String point;
    public BasLift() {}
    public BasLift(Integer liftNo, Integer status, Integer wrkNo, Date updateTime, Long updateBy, String memo, Boolean pakMk, NyShuttleProtocol.NyShuttlePointClass point, Boolean model, Boolean busy, Boolean frontOverrun, Boolean backOverrun, Boolean leftOverrun, Boolean rightOverrun, Boolean overHeight, Boolean overWeight, Boolean hasTray, Boolean hasCar, Boolean deviceError, Integer taskAddress, Integer distAddress, Integer completeTaskNo, Integer lev) {
    public BasLift(Integer liftNo, Integer status, Integer wrkNo, Date updateTime, Long updateBy, String memo, Boolean pakMk, String deviceStatus) {
        this.liftNo = liftNo;
        this.status = status;
        this.wrkNo = wrkNo;
@@ -195,22 +96,7 @@
        this.updateBy = updateBy;
        this.memo = memo;
        this.pakMk = pakMk;
        this.point = point;
        this.model = model;
        this.busy = busy;
        this.frontOverrun = frontOverrun;
        this.backOverrun = backOverrun;
        this.leftOverrun = leftOverrun;
        this.rightOverrun = rightOverrun;
        this.overHeight = overHeight;
        this.overWeight = overWeight;
        this.hasTray = hasTray;
        this.hasCar = hasCar;
        this.deviceError = deviceError;
        this.taskAddress = taskAddress;
        this.distAddress = distAddress;
        this.completeTaskNo = completeTaskNo;
        this.lev = lev;
        this.deviceStatus = deviceStatus;
    }
    public String getUpdateTime$(){
@@ -228,6 +114,5 @@
        }
        return null;
    }
}