com.alipay.api.response.AlipayInsAutoCarSaveResponse 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
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.ins.auto.car.save response.
*
* @author auto create
* @since 1.0, 2016-05-18 15:27:46
*/
public class AlipayInsAutoCarSaveResponse extends AlipayResponse {
private static final long serialVersionUID = 7899599932738568662L;
/**
* 车牌号
*/
@ApiField("car_no")
private String carNo;
public void setCarNo(String carNo) {
this.carNo = carNo;
}
public String getCarNo( ) {
return this.carNo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy