CalcLbStatuAnaly.java 5.58 KB
package com.bsth.entity.calc;

import java.util.Date;

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

@Entity
@Table(name = "calc_lb_statu_analy")
public class CalcLbStatuAnaly {
	/* 主键*/
	@Id
	@GeneratedValue(strategy = GenerationType.IDENTITY)
	private Long id;
	/* 公司代码*/
	private String gsdm;
	/* 公司名称*/
	private String gsname;
	/* 分公司代码*/
	private String fgsdm;
	/* 分公司名称*/
	private String fgsname;
	/* 日期*/
	private Date rq;
	/* 日期字符串*/
	private String rqStr;
	/* 线路编码*/
	private String xl;
	/* 线路名称*/
	private String xlName;
	/* 计划班次*/
	private int jhbc;
	/* 实际班次*/
	private int sjbc;
	/* 计划里程*/
	private Double jhlc;
	/* 实际公里*/
	private Double sjlc;
	/* 路阻(烂班班次)*/
	private int lzbc;
	/* 路阻(烂班里程)*/
	private Double lzlc;
	/* 吊慢(烂班班次)*/
	private int dmbc;
	/* 吊慢(烂班里程)*/
	private Double dmlc;
	/* 故障(烂班班次)*/
	private int gzbc;
	/* 故障(烂班里程)*/
	private Double gzlc;
	/* 纠纷(烂班班次)*/
	private int jfbc;
	/* 纠纷(烂班里程)*/
	private Double jflc;
	/* 肇事(烂班班次)*/
	private int zsbc;
	/* 肇事(烂班里程)*/
	private Double zslc;
	/* 缺人(烂班班次)*/
	private int qrbc;
	/* 缺人(烂班里程)*/
	private Double qrlc;
	/* 缺车(烂班班次)*/
	private int qcbc;
	/* 缺车(烂班里程)*/
	private Double qclc;
	/* 客稀(烂班班次)*/
	private int kxbc;
	/* 客稀(烂班里程)*/
	private Double kxlc;
	/* 气候(烂班班次)*/
	private int qhbc;
	/* 气候(烂班里程)*/
	private Double qhlc;
	/* 援外(烂班班次)*/
	private int ywbc;
	/* 援外(烂班里程)*/
	private Double ywlc;
	/* 其他(烂班班次)*/
	private int qtbc;
	/* 其他(烂班里程)*/
	private Double qtlc;
	/* 备注*/
	private String remark;
	
	
	public Long getId() {
		return id;
	}
	public void setId(Long id) {
		this.id = id;
	}
	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 Date getRq() {
		return rq;
	}
	public void setRq(Date rq) {
		this.rq = rq;
	}
	public String getRqStr() {
		return rqStr;
	}
	public void setRqStr(String rqStr) {
		this.rqStr = rqStr;
	}
	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 int getJhbc() {
		return jhbc;
	}
	public void setJhbc(int jhbc) {
		this.jhbc = jhbc;
	}
	public int getSjbc() {
		return sjbc;
	}
	public void setSjbc(int sjbc) {
		this.sjbc = sjbc;
	}
	public Double getJhlc() {
		return jhlc;
	}
	public void setJhlc(Double jhlc) {
		this.jhlc = jhlc;
	}
	public Double getSjlc() {
		return sjlc;
	}
	public void setSjlc(Double sjlc) {
		this.sjlc = sjlc;
	}
	public int getLzbc() {
		return lzbc;
	}
	public void setLzbc(int lzbc) {
		this.lzbc = lzbc;
	}
	public Double getLzlc() {
		return lzlc;
	}
	public void setLzlc(Double lzlc) {
		this.lzlc = lzlc;
	}
	public int getDmbc() {
		return dmbc;
	}
	public void setDmbc(int dmbc) {
		this.dmbc = dmbc;
	}
	public Double getDmlc() {
		return dmlc;
	}
	public void setDmlc(Double dmlc) {
		this.dmlc = dmlc;
	}
	public int getGzbc() {
		return gzbc;
	}
	public void setGzbc(int gzbc) {
		this.gzbc = gzbc;
	}
	public Double getGzlc() {
		return gzlc;
	}
	public void setGzlc(Double gzlc) {
		this.gzlc = gzlc;
	}
	public int getJfbc() {
		return jfbc;
	}
	public void setJfbc(int jfbc) {
		this.jfbc = jfbc;
	}
	public Double getJflc() {
		return jflc;
	}
	public void setJflc(Double jflc) {
		this.jflc = jflc;
	}
	public int getZsbc() {
		return zsbc;
	}
	public void setZsbc(int zsbc) {
		this.zsbc = zsbc;
	}
	public Double getZslc() {
		return zslc;
	}
	public void setZslc(Double zslc) {
		this.zslc = zslc;
	}
	public int getQrbc() {
		return qrbc;
	}
	public void setQrbc(int qrbc) {
		this.qrbc = qrbc;
	}
	public Double getQrlc() {
		return qrlc;
	}
	public void setQrlc(Double qrlc) {
		this.qrlc = qrlc;
	}
	public int getQcbc() {
		return qcbc;
	}
	public void setQcbc(int qcbc) {
		this.qcbc = qcbc;
	}
	public Double getQclc() {
		return qclc;
	}
	public void setQclc(Double qclc) {
		this.qclc = qclc;
	}
	public int getKxbc() {
		return kxbc;
	}
	public void setKxbc(int kxbc) {
		this.kxbc = kxbc;
	}
	public Double getKxlc() {
		return kxlc;
	}
	public void setKxlc(Double kxlc) {
		this.kxlc = kxlc;
	}
	public int getQhbc() {
		return qhbc;
	}
	public void setQhbc(int qhbc) {
		this.qhbc = qhbc;
	}
	public Double getQhlc() {
		return qhlc;
	}
	public void setQhlc(Double qhlc) {
		this.qhlc = qhlc;
	}
	public int getYwbc() {
		return ywbc;
	}
	public void setYwbc(int ywbc) {
		this.ywbc = ywbc;
	}
	public Double getYwlc() {
		return ywlc;
	}
	public void setYwlc(Double ywlc) {
		this.ywlc = ywlc;
	}
	public int getQtbc() {
		return qtbc;
	}
	public void setQtbc(int qtbc) {
		this.qtbc = qtbc;
	}
	public Double getQtlc() {
		return qtlc;
	}
	public void setQtlc(Double qtlc) {
		this.qtlc = qtlc;
	}
	public String getRemark() {
		return remark;
	}
	public void setRemark(String remark) {
		this.remark = remark;
	}
	
}