package com.zy.common.model; /** * Created by vincent on 2020/6/11 */ public class StartupDto { private Integer sourceStaNo; private Integer staNo; private Integer crnNo; private String locNo; 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; } }