OdMatchData.java 2.13 KB
package com.bsth.entity.od;


import com.bsth.data.BasicData;
import com.bsth.entity.schedule.BEntity;


public class OdMatchData extends BEntity {

    private String lineCode;

    private String plateNumber;

    private long upIoTime;

    private String upStation;

    private String DownStation;

    private String nbbm;

    private String upStationCode;

    private String downStationCode;

    private Integer upStationNo;

    private Integer downStationNo;

    public String getLineCode() {
        return lineCode;
    }

    public void setLineCode(String lineCode) {
        this.lineCode = lineCode;
    }

    public String getPlateNumber() {
        return plateNumber;
    }

    public void setPlateNumber(String plateNumber) {
        this.plateNumber = plateNumber;
    }

    public long getUpIoTime() {
        return upIoTime;
    }

    public void setUpIoTime(long upIoTime) {
        this.upIoTime = upIoTime;
    }

    public String getUpStation() {
        return upStation;
    }

    public void setUpStation(String upStation) {
        this.upStation = upStation;
    }

    public String getDownStation() {
        return DownStation;
    }

    public void setDownStation(String downStation) {
        DownStation = downStation;
    }

    public String getNbbm() {
        return BasicData.plate2NbbmMap.get(this.nbbm);
    }

    public void setNbbm(String nbbm) {
        this.nbbm = nbbm;
    }

    public String getUpStationCode() {
        return upStationCode;
    }

    public void setUpStationCode(String upStationCode) {
        this.upStationCode = upStationCode;
    }

    public String getDownStationCode() {
        return downStationCode;
    }

    public void setDownStationCode(String downStationCode) {
        this.downStationCode = downStationCode;
    }

    public Integer getUpStationNo() {
        return upStationNo;
    }

    public void setUpStationNo(Integer upStationNo) {
        this.upStationNo = upStationNo;
    }

    public Integer getDownStationNo() {
        return downStationNo;
    }

    public void setDownStationNo(Integer downStationNo) {
        this.downStationNo = downStationNo;
    }
}