VehicleInoutStop.java 1.65 KB
package com.bsth.entity.traffic;

import javax.persistence.*;
import java.util.Date;

/**
 * 
 * @ClassName: VehicleInoutStop(车载上报停靠站信息)
 * 
 * @Description: TODO(线路标准信息)
 * 
 * @Author bsth@zq
 * 
 * @Date 2017-9-18 9:34:39
 *	
 * @Version 公交调度系统BS版 0.1
 * 
 */
@Entity
@Table(name = "bsth_c_shreal")
public class VehicleInoutStop {

	@Id
	@GeneratedValue(strategy = GenerationType.IDENTITY)
	private Integer id;

	private int line;

	private int cars;

	// 站点序号
	private Integer stop;

	// 营运状态
	private Integer serviceState;

	// 上下行
	private Integer upDown;

	// 进出站/站内外
	private Integer inOutStop;

	// 上报时间
	private Date reportDate;

	public Integer getId() {
		return id;
	}

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

	public int getLine() {
		return line;
	}

	public void setLine(int line) {
		this.line = line;
	}

	public int getCars() {
		return cars;
	}

	public void setCars(int cars) {
		this.cars = cars;
	}

	public Integer getStop() {
		return stop;
	}

	public void setStop(Integer stop) {
		this.stop = stop;
	}

	public Integer getServiceState() {
		return serviceState;
	}

	public void setServiceState(Integer serviceState) {
		this.serviceState = serviceState;
	}

	public Integer getUpDown() {
		return upDown;
	}

	public void setUpDown(Integer upDown) {
		this.upDown = upDown;
	}

	public Integer getInOutStop() {
		return inOutStop;
	}

	public void setInOutStop(Integer inOutStop) {
		this.inOutStop = inOutStop;
	}

	public Date getReportDate() {
		return reportDate;
	}

	public void setReportDate(Date reportDate) {
		this.reportDate = reportDate;
	}
}