package com.doumee.core.haikang.model.param.request.event.parks; import com.alibaba.fastjson.annotation.JSONField; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; import java.math.BigDecimal; @Data public class EventPlatformCarsStatusInfoRequest { @JSONField(name="HPNo") @JsonProperty(value = "HPNo") private String hPNo;// 1,车道号 private Integer plateScore;//: 80车牌评分 private String motionStatus;//'leave',运动状态 enter#进入,leave#离开 private String plateNo;//'A12345',车牌号 private String vehicleDoorStatus;//'open',车门状态  open-开门,close-关门 private String stockStatus;//'rear',车头车尾状态 front#车头,rear#车尾 @JSONField(name="BackgroundImage") @JsonProperty(value = "BackgroundImage") private EventImageInfoRequest backgroundImage;//月台背景大图 @JSONField(name="PlatePicture") @JsonProperty(value = "PlatePicture") private EventImageInfoRequest platePicture;//车牌图 }