StationPeopleLogger.java 2.55 KB
package com.bsth.entity.zndd;


import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

import javax.persistence.*;
import java.io.Serializable;

@Entity
@Table(name = "bsth_c_t_station_people_logger")  //智能调度记录检测表
@JsonIgnoreProperties(value={"hibernateLazyInitializer","handler","fieldHandler"})
public class StationPeopleLogger implements Serializable {
    // ID
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Long id;
    
    private String lineCode;
    //线路名称
    private String lineName;
    //站点code
    @Transient
    private String station;
    //站点名称
    @Transient
    private String stationName;
    //日期
    private String rqStr;
    //日期  HH:mm:ss
    private String rq;
    //类型  'DJG': '大间隔','FCJG': '发车间隔','WD': '误点','MZ': '满载率高','DKL': '大客流',
    private String type;
    //上下行
    private String xlDir;
    //人数 or 差距时间 or 站点差数  根据类型判断
    private String  fcsj;

    private String clZbh;



    public String getClZbh() {
        return clZbh;
    }

    public void setClZbh(String clZbh) {
        this.clZbh = clZbh;
    }

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

    public String getLineCode() {
        return lineCode;
    }

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

    public String getLineName() {
        return lineName;
    }

    public void setLineName(String lineName) {
        this.lineName = lineName;
    }

    public String getRqStr() {
        return rqStr;
    }

    public void setRqStr(String rqStr) {
        this.rqStr = rqStr;
    }

    public String getType() {
        return type;
    }

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

    public String getXlDir() {
        return xlDir;
    }

    public void setXlDir(String xlDir) {
        this.xlDir = xlDir;
    }

    public String getRq() {
        return rq;
    }

    public void setRq(String rq) {
        this.rq = rq;
    }

    public String getFcsj() {
        return fcsj;
    }

    public void setFcsj(String fcsj) {
        this.fcsj = fcsj;
    }

    public String getStation() {
        return station;
    }

    public void setStation(String station) {
        this.station = station;
    }

    public String getStationName() {
        return stationName;
    }

    public void setStationName(String stationName) {
        this.stationName = stationName;
    }

    
}