Sample.java 2.33 KB
package com.bsth.entity.forecast;


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

/**
 * 
 * @ClassName: Sample
 * @Description: TODO(站点耗时预测样本)
 * @author PanZhao
 * @date 2016年8月31日 上午9:50:49
 *
 */
@Entity
@Table(name = "bsth_forecast_sample")
public class Sample {

	@Id
	@GeneratedValue
	private Long id;

	private Integer lineCode;
	
	// 开始时间
	private String sDate;
	@Transient
	private Long sTime;

	// 结束时间
	private String eDate;
	@Transient
	private Long eTime;

	// 开始站点
	private String sStation;

	// 结束站点
	private String eStation;

	// 0:gps分析生成, 1:人工录入
	private int type;
	
	private String tag;
	
	//行驶时间
	private Float runTime;
	
	private int updown;

	public Long getId() {
		return id;
	}

	public void setId(Long id) {
		this.id = id;
	}

	public String getsDate() {
		return sDate;
	}

	public void setsDate(String sDate) {
		this.sDate = sDate;
	}

	public Long getsTime() {
		return sTime;
	}

	public void setsTime(Long sTime) {
		this.sTime = sTime;
	}

	public String geteDate() {
		return eDate;
	}

	public void seteDate(String eDate) {
		this.eDate = eDate;
	}

	public Long geteTime() {
		return eTime;
	}

	public void seteTime(Long eTime) {
		this.eTime = eTime;
	}

	public String getsStation() {
		return sStation;
	}

	public void setsStation(String sStation) {
		this.sStation = sStation;
	}

	public String geteStation() {
		return eStation;
	}

	public void seteStation(String eStation) {
		this.eStation = eStation;
	}

	public int getType() {
		return type;
	}

	public void setType(int type) {
		this.type = type;
	}

	public String getTag() {
		return tag;
	}

	public void setTag(String tag) {
		this.tag = tag;
	}

	public Float getRunTime() {
		return runTime;
	}

	public void setRunTime(Float runTime) {
		this.runTime = runTime;
	}

	public Integer getLineCode() {
		return lineCode;
	}

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

	public int getUpdown() {
		return updown;
	}

	public void setUpdown(int updown) {
		this.updown = updown;
	}
}