CalcBusMileage.java 5.75 KB
package com.bsth.entity.calc;

import java.util.Date;

import javax.persistence.*;

@Entity
@Table(name = "calc_bus_mileage")
public class CalcBusMileage {
	/* 主键*/
	@Id
	@GeneratedValue(strategy = GenerationType.IDENTITY)
	private Long id;
	/* 日期*/
	private Date date;
	/* 日期字符串*/
	private String dateStr;
	/* 线路编码*/
	private String xl;
	/* 线路名称*/
	private String xlName;
	/* 公司代码*/
	private String gsdm;
	/* 公司名称*/
	private String gsName;
	/* 分公司代码*/
	private String fgsdm;
	/* 分公司名称*/
	private String fgsName;
	/* 车号*/
	private String nbbm;
	/* 司机职号*/
	private String jGh;
	/* 司机姓名*/
	private String jName;
	/* 售票员职号*/
	private String sGh;
	/* 售票员姓名*/
	private String sName;
	/* 行驶里程(包括空放)*/
	private Double zlc;
	/* 计划内营运里程*/
	private Double jhnlc;
	/* 临时性多样化调度营运里程*/
	private Double jhwlc;
	/* 计划内进出场空驶*/
	private Double jhnjcclc;
	/* 计划外进出场空驶*/
	private Double jhwjcclc;
	/* 计划外进出场空驶_*/
	private Double jhwjcclcz;
	/* 空放空驶*/
	private Double kfks;
	/* 故障进出场空驶*/
	private Double zrwjcclc;
	/* 肇事进出场空驶*/
	private Double zrwjcclc1;
	/* 纠纷进出场空驶*/
	private Double zrwjcclc2;
	/* 其他进出场空驶*/
	private Double zrwjcclcqt;
	/* 临加营运公里*/
	private Double ljyy;
	/* 临加进出场空驶*/
	private Double ljjcc;
	/* 临加空放空驶*/
	private Double ljkfks;
	/* 电耗量*/
	private Double dhl;
	/* 加电量*/
	private Double cdl;
	/* 耗油量*/
	private Double yhl;
	/* 加注量*/
	private Double jzl;
	/* 非营业用油*/
	private Double hyl;
	/* 计划总公里*/
	private Double jhzlc;
	/* 备注*/
	private String remark;
	/* 创建时间*/
	private Date createDate;
	
	public Long getId() {
		return id;
	}
	public void setId(Long id) {
		this.id = id;
	}
	public Date getDate() {
		return date;
	}
	public void setDate(Date date) {
		this.date = date;
	}
	public String getDateStr() {
		return dateStr;
	}
	public void setDateStr(String dateStr) {
		this.dateStr = dateStr;
	}
	public String getXl() {
		return xl;
	}
	public void setXl(String xl) {
		this.xl = xl;
	}
	public String getXlName() {
		return xlName;
	}
	public void setXlName(String xlName) {
		this.xlName = xlName;
	}
	public String getGsdm() {
		return gsdm;
	}
	public void setGsdm(String gsdm) {
		this.gsdm = gsdm;
	}
	public String getGsName() {
		return gsName;
	}
	public void setGsName(String gsName) {
		this.gsName = gsName;
	}
	public String getFgsdm() {
		return fgsdm;
	}
	public void setFgsdm(String fgsdm) {
		this.fgsdm = fgsdm;
	}
	public String getFgsName() {
		return fgsName;
	}
	public void setFgsName(String fgsName) {
		this.fgsName = fgsName;
	}
	public String getNbbm() {
		return nbbm;
	}
	public void setNbbm(String nbbm) {
		this.nbbm = nbbm;
	}
	public String getjGh() {
		return jGh;
	}
	public void setjGh(String jGh) {
		this.jGh = jGh;
	}
	public String getjName() {
		return jName;
	}
	public void setjName(String jName) {
		this.jName = jName;
	}
	public String getsGh() {
		return sGh;
	}
	public void setsGh(String sGh) {
		this.sGh = sGh;
	}
	public String getsName() {
		return sName;
	}
	public void setsName(String sName) {
		this.sName = sName;
	}
	public Double getZlc() {
		return zlc;
	}
	public void setZlc(Double zlc) {
		this.zlc = zlc;
	}
	public Double getJhnlc() {
		return jhnlc;
	}
	public void setJhnlc(Double jhnlc) {
		this.jhnlc = jhnlc;
	}
	public Double getJhwlc() {
		return jhwlc;
	}
	public void setJhwlc(Double jhwlc) {
		this.jhwlc = jhwlc;
	}
	public Double getJhnjcclc() {
		return jhnjcclc;
	}
	public void setJhnjcclc(Double jhnjcclc) {
		this.jhnjcclc = jhnjcclc;
	}
	public Double getJhwjcclc() {
		return jhwjcclc;
	}
	public void setJhwjcclc(Double jhwjcclc) {
		this.jhwjcclc = jhwjcclc;
	}
	public Double getJhwjcclcz() {
		return jhwjcclcz;
	}
	public void setJhwjcclcz(Double jhwjcclcz) {
		this.jhwjcclcz = jhwjcclcz;
	}
	public Double getKfks() {
		return kfks;
	}
	public void setKfks(Double kfks) {
		this.kfks = kfks;
	}
	public Double getZrwjcclc() {
		return zrwjcclc;
	}
	public void setZrwjcclc(Double zrwjcclc) {
		this.zrwjcclc = zrwjcclc;
	}
	public Double getZrwjcclc1() {
		return zrwjcclc1;
	}
	public void setZrwjcclc1(Double zrwjcclc1) {
		this.zrwjcclc1 = zrwjcclc1;
	}
	public Double getZrwjcclc2() {
		return zrwjcclc2;
	}
	public void setZrwjcclc2(Double zrwjcclc2) {
		this.zrwjcclc2 = zrwjcclc2;
	}
	public Double getZrwjcclcqt() {
		return zrwjcclcqt;
	}
	public void setZrwjcclcqt(Double zrwjcclcqt) {
		this.zrwjcclcqt = zrwjcclcqt;
	}
	public Double getLjyy() {
		return ljyy;
	}
	public void setLjyy(Double ljyy) {
		this.ljyy = ljyy;
	}
	public Double getLjjcc() {
		return ljjcc;
	}
	public void setLjjcc(Double ljjcc) {
		this.ljjcc = ljjcc;
	}
	public Double getLjkfks() {
		return ljkfks;
	}
	public void setLjkfks(Double ljkfks) {
		this.ljkfks = ljkfks;
	}
	public Double getDhl() {
		return dhl;
	}
	public void setDhl(Double dhl) {
		this.dhl = dhl;
	}
	public Double getCdl() {
		return cdl;
	}
	public void setCdl(Double cdl) {
		this.cdl = cdl;
	}
	public Double getYhl() {
		return yhl;
	}
	public void setYhl(Double yhl) {
		this.yhl = yhl;
	}
	public Double getJzl() {
		return jzl;
	}
	public void setJzl(Double jzl) {
		this.jzl = jzl;
	}
	public Double getHyl() {
		return hyl;
	}
	public void setHyl(Double hyl) {
		this.hyl = hyl;
	}
	public Double getJhzlc() {
		return jhzlc;
	}
	public void setJhzlc(Double jhzlc) {
		this.jhzlc = jhzlc;
	}
	public String getRemark() {
		return remark;
	}
	public void setRemark(String remark) {
		this.remark = remark;
	}
	public Date getCreateDate() {
		return createDate;
	}
	public void setCreateDate(Date createDate) {
		this.createDate = createDate;
	}
	
}