package com.zy.common.model; /** * Created by vincent on 2020/6/11 */ public class StartupDto { private Shelves shelves; private Integer sourceStaNo; private Integer staNo; private Integer crnNo; private String locNo; public Shelves getShelves() { return shelves; } public void setShelves(Shelves shelves) { this.shelves = shelves; } public Integer getSourceStaNo() { return sourceStaNo; } public void setSourceStaNo(Integer sourceStaNo) { this.sourceStaNo = sourceStaNo; } public Integer getStaNo() { return staNo; } 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; } }