28 lines
671 B
Java
28 lines
671 B
Java
package com.zhgd.xmgl.base;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class ParkReservation {
|
|
@JsonProperty("parkSyscode")
|
|
private String parkSyscode;
|
|
@JsonProperty("plateNo")
|
|
private String plateNo;
|
|
@JsonProperty("phoneNo")
|
|
private String phoneNo;
|
|
@JsonProperty("owner")
|
|
private String owner;
|
|
@JsonProperty("allowTimes")
|
|
private Long allowTimes;
|
|
@JsonProperty("isCharge")
|
|
private String isCharge;
|
|
@JsonProperty("resvWay")
|
|
private String resvWay;
|
|
@JsonProperty("startTime")
|
|
private String startTime;
|
|
@JsonProperty("endTime")
|
|
private String endTime;
|
|
|
|
}
|