package com.ruoyi.dataInterchange.model;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import lombok.Data;
|
|
/**
|
* 车辆牌照应答消息
|
* @author zhibing.pu
|
* @Date 2025/3/3 16:13
|
*/
|
@Data
|
public class UPCtrlMsgTakePhotoAck {
|
/**
|
* 车牌号码
|
*/
|
@JsonProperty("VEHICLE_NO")
|
private String vehicleNo;
|
/**
|
* 车牌颜色
|
*/
|
@JsonProperty("VEHICLE_COLOR")
|
private String vehicleColor;
|
/**
|
* 子业务类型标识
|
*/
|
@JsonProperty("DATA_TYPE")
|
private String dataType;
|
/**
|
* 后续数据长度
|
*/
|
@JsonProperty("DATA_LENGTH")
|
private String dataLength;
|
/**
|
* 对应车辆牌照请求消息源子业务类型标识
|
*/
|
@JsonProperty("SOURCE_DATA_TYPE")
|
private String sourceDataType;
|
/**
|
* 对应车辆牌照请求消息源报文序列号
|
*/
|
@JsonProperty("SOURCE_MSG_SN")
|
private String sourceMsgSn;
|
/**
|
* 牌照应答标识
|
* 0x00: 不支持牌照
|
* 0x01: 完成拍照
|
* 0x02: 完成拍照、照片数据稍后传送
|
* 0x03: 未拍照(不在线)
|
* 0x04: 未拍照(无法使用指定镜头)
|
* 0x05: 未拍照(其他)
|
* 0x09: 车牌号码错误
|
*/
|
@JsonProperty("PHOTO_RSP_FLAG")
|
private String photoRspFlag;
|
/**
|
* 牌照位置地点
|
*/
|
@JsonProperty("GNSS_DATA")
|
private String gnssData;
|
/**
|
* 镜头ID
|
*/
|
@JsonProperty("LENS_ID")
|
private String lensId;
|
/**
|
* 图片长度
|
*/
|
@JsonProperty("PHOTO_LEN")
|
private String photoLen;
|
/**
|
* 图片大小
|
* 0x01: 320 x 240
|
* 0x02: 640 x 48
|
* 0x03: 800 x 600
|
* 0x04: 1024 x 768
|
* 0x05: 176 x 144
|
* 0x06: 352 x 288
|
* 0x07: 704 x 288
|
* 0x08: 704 x 576
|
*/
|
@JsonProperty("SIZE_TYPE")
|
private String sizeType;
|
/**
|
* 图像格式
|
* 0x01: jpg
|
* 0x02: gif
|
* 0x03: tiff
|
* 0x04: png
|
*/
|
@JsonProperty("TYPE")
|
private String type;
|
/**
|
* 图片内容
|
*/
|
@JsonProperty("PHOTO")
|
private String photo;
|
|
}
|