#
Junjie
3 天以前 8b60bf565eb475c13e39caa305c4415b34d8ec02
src/main/java/com/zy/common/model/StartupDto.java
@@ -1,47 +1,14 @@
package com.zy.common.model;
/**
 * Created by vincent on 2020/6/11
 */
import lombok.Data;
@Data
public class StartupDto {
    private Integer sourceStaNo;
    private Integer staNo;
    private Integer crnNo;
    private String locNo;
    public Integer getSourceStaNo() {
        return sourceStaNo;
    }
    private Integer taskNo;
    public void setSourceStaNo(Integer sourceStaNo) {
        this.sourceStaNo = sourceStaNo;
    }
    private Integer taskPri;
    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;
    }
}