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-OBU,2-CPC卡,3-纸券,4-M1,9-无通行介质 */ 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; }