济菏高速数据中心代码
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.

213 lines
3.5 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 OdsTollExpassData implements Serializable {
/**
* 出口时间
*/
private Date extime;
/**
* 交易流水号主键
*/
private String id;
/**
* 交易支付方式1-出口ETC通行2-出口ETC刷卡通行11-现金12-其他第三方账户支付13-银联卡支付16-支付宝17-微信
*/
private Short transpaytype;
/**
* 交易编码
*/
private String transcode;
/**
* 入口重量
*/
private Integer enweight;
/**
* 入口轴数
*/
private Integer enaxlecount;
/**
* 入口站号
*/
private String entollstation;
/**
* 入口站名称
*/
private String entollstationname;
/**
* 入口车道号
*/
private String entolllane;
/**
* 入口站HEX编码
*/
private String entollstationhex;
/**
* 入口车道HEX编码
*/
private String entolllanehex;
/**
* 入口站号(国标)
*/
private String entollstationid;
/**
* 入口车道号(国标)
*/
private String entolllaneid;
/**
* 入口时间
*/
private String entime;
/**
* 车道类型1-ETC车道2-MTC车道3-混合车道
*/
private Short lanetype;
/**
* 出口站号
*/
private String extollstation;
/**
* 出口收费站名称
*/
private String extollstationname;
/**
* 出口车道号
*/
private String extolllane;
/**
* 出口站HEX编码
*/
private String extollstationhex;
/**
* 出口车道HEX编码
*/
private String extolllanehex;
/**
* 出口站号(国标)
*/
private String extollstationid;
/**
* 出口车道号(国标)
*/
private String extolllaneid;
/**
* 通行介质类型1-OBU2-CPC卡3-纸券4-M19-无通行介质
*/
private Short mediatype;
/**
* 过车数量
*/
private Integer vcount;
/**
* 入口车牌号经过MD5加密
*/
@TableField("envlp_MD5")
private String envlpMD5;
/**
* 入口车牌颜色
*/
private Short envlpc;
/**
* 出口车牌号经过MD5加密
*/
@TableField("exvlp_MD5")
private String exvlpMD5;
/**
* 出口车牌颜色
*/
private Short exvlpc;
/**
* 入口车型
*/
private Integer envehicletype;
/**
* 出口车型
*/
private Integer exvehicletype;
/**
* 入口车种
*/
private Short envehicleclass;
/**
* 出口车种
*/
private Short exvehicleclass;
/**
* 出口重量
*/
private Integer exweight;
/**
* 轴组信息
*/
private String axisinfo;
/**
* 限载总重(KG)
*/
private Integer limitweight;
/**
* 超限率
*/
private Short overweightrate;
/**
* 轴数
*/
private Integer axlecount;
/**
* 交易类型
*/
private String transtype;
/**
* 支付类型1-现金2-其他第三方账户支付3-银联卡支付4-ETC 用户卡6-支付宝7-微信
*/
private Short paytype;
}