29 lines
701 B
Java
29 lines
701 B
Java
package com.zhgd.xmgl.base;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class HikvisionCarInfo {
|
|
|
|
@JsonProperty("vehicleId")
|
|
private String vehicleId;
|
|
@JsonProperty("clientId")
|
|
private Long clientId;
|
|
@JsonProperty("plateNo")
|
|
private String plateNo;
|
|
@JsonProperty("personId")
|
|
private String personId;
|
|
@JsonProperty("plateType")
|
|
private String plateType;
|
|
@JsonProperty("plateColor")
|
|
private String plateColor;
|
|
@JsonProperty("vehicleType")
|
|
private String vehicleType;
|
|
@JsonProperty("vehicleColor")
|
|
private String vehicleColor;
|
|
@JsonProperty("description")
|
|
private String description;
|
|
|
|
}
|