wisdomisite-java/src/main/java/com/zhgd/xmgl/base/HikvisionReservationCarInfo.java
2024-07-05 19:31:06 +08:00

31 lines
745 B
Java

package com.zhgd.xmgl.base;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
@Data
public class HikvisionReservationCarInfo {
@JsonProperty("parkSyscode")
private String parkSyscode;
@JsonProperty("plateNo")
private String plateNo;
@JsonProperty("resvState")
private Integer resvState;
@JsonProperty("resvWay")
private Long resvWay;
@JsonProperty("allowTimes")
private Long allowTimes;
@JsonProperty("isCharge")
private Long isCharge;
@JsonProperty("startTime")
private String startTime;
@JsonProperty("endTime")
private String endTime;
@JsonProperty("pageNo")
private Integer pageNo;
@JsonProperty("pageSize")
private Long pageSize;
}