OilStationSociety.java 2.96 KB
package com.bsth.entity.realcontrol;

import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;

/**
 * 社会加油站
 * Created by panzhao on 2017/3/16.
 */
@Entity
@Table(name = "bsth_c_oil_station")
public class OilStationSociety {

    @Id
    private String lineCode;

    /**
     * 加油站名称
     */
    private String stationName;

    /**
     * 加油站编码(为空则默认社会加油站)
     */
    private String stationCode;

    /**
     * 上行进场距离
     */
    private Double upInMile;
    /**
     * 上行出场距离
     */
    private Double upOutMile;

    /**
     * 下行进场距离
     */
    private Double downInMile;
    /**
     * 下行出场距离
     */
    private Double downOutMile;


    /**
     * 上行进场时间 分钟
     */
    private int upInTime;
    /**
     * 上行出场时间 分钟
     */
    private int upOutTime;

    /**
     * 下行进场时间 分钟
     */
    private int downInTime;
    /**
     * 下行出场时间 分钟
     */
    private int downOutTime;


    public String getLineCode() {
        return lineCode;
    }

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

    public String getStationName() {
        return stationName;
    }

    public void setStationName(String stationName) {
        this.stationName = stationName;
    }

    public Double getUpInMile() {
        return upInMile;
    }

    public void setUpInMile(Double upInMile) {
        this.upInMile = upInMile;
    }

    public Double getUpOutMile() {
        return upOutMile;
    }

    public void setUpOutMile(Double upOutMile) {
        this.upOutMile = upOutMile;
    }

    public Double getDownInMile() {
        return downInMile;
    }

    public void setDownInMile(Double downInMile) {
        this.downInMile = downInMile;
    }

    public Double getDownOutMile() {
        return downOutMile;
    }

    public void setDownOutMile(Double downOutMile) {
        this.downOutMile = downOutMile;
    }

    public int getUpInTime() {
        return upInTime;
    }

    public void setUpInTime(int upInTime) {
        this.upInTime = upInTime;
    }

    public int getUpOutTime() {
        return upOutTime;
    }

    public void setUpOutTime(int upOutTime) {
        this.upOutTime = upOutTime;
    }

    public int getDownInTime() {
        return downInTime;
    }

    public void setDownInTime(int downInTime) {
        this.downInTime = downInTime;
    }

    public int getDownOutTime() {
        return downOutTime;
    }

    public void setDownOutTime(int downOutTime) {
        this.downOutTime = downOutTime;
    }

    public String getStationCode() {
        return stationCode;
    }

    public void setStationCode(String stationCode) {
        this.stationCode = stationCode;
    }
}