济菏高速数据中心代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

129 lines
2.1 KiB

package com.zc.business.domain;
import com.baomidou.mybatisplus.annotation.TableField;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
/**
* 收费站入口流水数据
* @author xiepufeng
*/
@Data
public class OdsTollEnpassData implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 入口通行时间
*/
private Date entime;
/**
* 交易流水号(主键)
*/
private String id;
/**
* 交易编码
*/
private String transcode;
/**
* 车道类型
*/
private Short lanetype;
/**
* 入口站号
*/
private String entollstation;
/**
* 入口车道号
*/
private String entolllane;
/**
* 入口站HEX编码
*/
private String entollstationhex;
/**
* 入口车道HEX编码
*/
private String entolllanehex;
/**
* 入口站号(国标)
*/
private String entollstationid;
/**
* 入口车道号(国标)
*/
private String entolllaneid;
/**
* 通行介质类型:1-OBU,2-CPC卡,3-纸券,4-M1卡,9-无通行介质
*/
private Short mediatype;
/**
* 过车数量
*/
private Integer vcount;
/**
* 车牌号(经过MD5加密)
*/
@TableField("vlp_MD5")
private String vlpMD5;
/**
* 车牌颜色
*/
private Short vlpc;
/**
* 车型:1-一型客车...(具体车型定义请参考注释)
*/
private Integer vehicletype;
/**
* 车种:0-普通,8-军警,10-紧急...(具体车种定义请参考注释)
*/
private Short vehicleclass;
/**
* 入口重量
*/
private String enweight;
/**
* 轴组信息
*/
private String axisinfo;
/**
* 限载总重(KG)
*/
private Integer limitweight;
/**
* 超限率
*/
private Short overweightrate;
/**
* 入口轴数
*/
private Integer enaxlecount;
/**
* 通行标识ID
*/
private String passid;
}