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.
45 lines
789 B
45 lines
789 B
12 months ago
|
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 OdsTollViuData implements Serializable {
|
||
|
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
/**
|
||
|
* 抓拍时间
|
||
|
*/
|
||
|
private Date pictime;
|
||
|
|
||
|
/**
|
||
|
* 门架编号
|
||
|
*/
|
||
|
private String gantryid;
|
||
|
|
||
|
/**
|
||
|
* 车牌识别流水号(主键)
|
||
|
*/
|
||
|
private String picid;
|
||
|
|
||
|
/**
|
||
|
* 拍摄位置:1表示车头,0表示车尾
|
||
|
*/
|
||
|
private Integer shootposition;
|
||
|
|
||
|
/**
|
||
|
* 车牌号(经过MD5加密)
|
||
|
*/
|
||
|
@TableField("vehicleplate_MD5")
|
||
|
private String vehicleplateMD5;
|
||
|
|
||
|
}
|