
com.alipay.api.domain.AlipayEcoMycarParkingEnterinfoSyncModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
baidu push client api with maven
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 车辆驶入上送接口
*
* @author auto create
* @since 1.0, 2017-08-25 17:10:00
*/
public class AlipayEcoMycarParkingEnterinfoSyncModel extends AlipayObject {
private static final long serialVersionUID = 5754367242897339872L;
/**
* 车牌号
*/
@ApiField("car_number")
private String carNumber;
/**
* 车辆入场的时间,格式"YYYY-MM-DD HH:mm:ss",24小时制
*/
@ApiField("in_time")
private String inTime;
/**
* 支付宝停车场ID ,系统唯一
*/
@ApiField("parking_id")
private String parkingId;
public String getCarNumber() {
return this.carNumber;
}
public void setCarNumber(String carNumber) {
this.carNumber = carNumber;
}
public String getInTime() {
return this.inTime;
}
public void setInTime(String inTime) {
this.inTime = inTime;
}
public String getParkingId() {
return this.parkingId;
}
public void setParkingId(String parkingId) {
this.parkingId = parkingId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy