自动化立体仓库 - WCS系统
#
lsh
2024-06-22 5a0f4ce17e31d84068bdb2f62d5bb7ef27f87d0f
src/main/java/com/zy/common/model/StartupDto.java
@@ -1,47 +1,50 @@
package com.zy.common.model;
import lombok.Data;
/**
 * Created by vincent on 2020/6/11
 */
@Data
public class StartupDto {
    /**
     * 源站
     */
    private Integer sourceStaNo;
    /**
     * 目标站
     */
    private Integer staNo;
    /**
     * 堆垛机号
     */
    private Integer crnNo;
    /**
     * 库位号
     */
    private String locNo;
    public Integer getSourceStaNo() {
        return sourceStaNo;
    }
    /**
     * 工作号
     */
    private Integer workNo;
    public void setSourceStaNo(Integer sourceStaNo) {
        this.sourceStaNo = sourceStaNo;
    }
    /**
     * RGV编号
     */
    private Integer rgvNo;
    public Integer getStaNo() {
        return staNo;
    }
    /**
     * RGV源站
     */
    private Integer rgvSstaNo;
    public void setStaNo(Integer staNo) {
        this.staNo = staNo;
    }
    public Integer getCrnNo() {
        return crnNo;
    }
    public void setCrnNo(Integer crnNo) {
        this.crnNo = crnNo;
    }
    public String getLocNo() {
        return locNo;
    }
    public void setLocNo(String locNo) {
        this.locNo = locNo;
    }
    /**
     * RGV目标站
     */
    private Integer rgvDstaNo;
}