zhang
2025-06-13 ae54e42cbe354ef5c39954eed2eab18de9504946
src/main/java/com/zy/asrs/entity/BasCrnOpt.java
@@ -129,7 +129,8 @@
    @TableField("update_by")
    private Long updateBy;
    public BasCrnOpt() {}
    public BasCrnOpt() {
    }
    public BasCrnOpt(Integer wrkNo,Integer crnNo,Date sendTime,String mode,Integer sourceRow,Integer sourceBay,Integer sourceLev,Integer sourceSta,Integer posRow,Integer posBay,Integer posLev,Integer posSta,Integer response,Date updateTime,Long updateBy) {
        this.wrkNo = wrkNo;
@@ -195,15 +196,15 @@
        return sendTime;
    }
    public void setSendTime(Date sendTime) {
        this.sendTime = sendTime;
    }
    public String getSendTime$(){
        if (Cools.isEmpty(this.sendTime)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.sendTime);
    }
    public void setSendTime(Date sendTime) {
        this.sendTime = sendTime;
    }
    public String getMode() {
@@ -282,8 +283,14 @@
        return response;
    }
    public void setResponse(Integer response) {
        this.response = response;
    }
    public String getResponse$(){
        if (null == this.response){ return null; }
        if (null == this.response) {
            return null;
        }
        switch (this.response){
            case 1:
                return "正常";
@@ -294,12 +301,12 @@
        }
    }
    public void setResponse(Integer response) {
        this.response = response;
    }
    public Date getUpdateTime() {
        return updateTime;
    }
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
    public String getUpdateTime$(){
@@ -309,12 +316,12 @@
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.updateTime);
    }
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
    public Long getUpdateBy() {
        return updateBy;
    }
    public void setUpdateBy(Long updateBy) {
        this.updateBy = updateBy;
    }
    public String getUpdateBy$(){
@@ -324,10 +331,6 @@
            return String.valueOf(user.getUsername());
        }
        return null;
    }
    public void setUpdateBy(Long updateBy) {
        this.updateBy = updateBy;
    }