wisdomisite-java/src/main/java/com/zhgd/xmgl/base/HikvisionReservationCarInfo.java

31 lines
745 B
Java
Raw Normal View History

2024-03-06 20:22:42 +08:00
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")
2024-07-05 19:31:06 +08:00
private Integer resvState;
2024-03-06 20:22:42 +08:00
@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")
2024-07-05 19:31:06 +08:00
private Integer pageNo;
2024-03-06 20:22:42 +08:00
@JsonProperty("pageSize")
private Long pageSize;
}