Outbound.java 2.35 KB
package com.bsth.entity.excep;

import java.util.Date;

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

/**
 * 越界
 * 
 *
 */
@Entity
@Table(name = "bsth_c_outbound")
public class Outbound {
	@Id
	@GeneratedValue
	private Integer id;
	
	/**
	 * 车辆编码
	 */
	private String vehicle;
	
	/**
	 * 线路编码
	 */
	private Integer line;
	/**
	 * 线路名称
	 */
	private String lineName;
	

	

	/**
	 * 上下行(0 上行 , 1 下行 , -1 无效)
	 */
	private Integer upDown;
	
	/**
	 * 经度
	 */
	private Float lon;
	
	/**
	 * 纬度
	 */
	private Float lat;
	
	/**
	 * 越界位置
	 */
	private String location;
	
	
	/**
	 * 	时间戳
	 */
	private Long timestamp;
	
	/**
	 * 时间戳转换的时间
	 */
	private String timestampDate;
	
	
	/**
	 * 	时间
	 */
	private Date createDate;
	
	
	public Integer getId() {
		return id;
	}

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

	public String getVehicle() {
		return vehicle;
	}

	public void setVehicle(String vehicle) {
		this.vehicle = vehicle;
	}

	public Integer getLine() {
		return line;
	}

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

	public String getLineName() {
		return lineName;
	}

	public void setLineName(String lineName) {
		this.lineName = lineName;
	}
	
	public Integer getUpDown() {
		return upDown;
	}

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

	public Float getLon() {
		return lon;
	}

	public void setLon(Float lon) {
		this.lon = lon;
	}

	public Float getLat() {
		return lat;
	}

	public void setLat(Float lat) {
		this.lat = lat;
	}

	public String getLocation() {
		return location;
	}
	
	public void setLocation(String location) {
		this.location = location;
	}
	
	public Long getTimestamp() {
		return timestamp;
	}

	public void setTimestamp(Long timestamp) {
		this.timestamp = timestamp;
	}

	public Date getCreateDate() {
		return createDate;
	}

	public void setCreateDate(Date createDate) {
		this.createDate = createDate;
	}
	
	public String getTimestampDate() {
		return timestampDate;
	}

	public void setTimestampDate(String timestampDate) {
		this.timestampDate = timestampDate;
	}


}