com.alipay.api.domain.AlipayEcoMycarViolationCityPushModel 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.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 推送新支持违章查询的城市
*
* @author auto create
* @since 1.0, 2017-09-15 16:30:11
*/
public class AlipayEcoMycarViolationCityPushModel extends AlipayObject {
private static final long serialVersionUID = 6894412917573739864L;
/**
* 城市编码
*/
@ApiField("city_code")
private String cityCode;
/**
* 该城市规则是新增还是更新, 0:新增,1:更新
*/
@ApiField("push_type")
private String pushType;
/**
* 该城市是否支持违章查询,0:支持,1:不支持
*/
@ApiField("service_status")
private String serviceStatus;
public String getCityCode() {
return this.cityCode;
}
public void setCityCode(String cityCode) {
this.cityCode = cityCode;
}
public String getPushType() {
return this.pushType;
}
public void setPushType(String pushType) {
this.pushType = pushType;
}
public String getServiceStatus() {
return this.serviceStatus;
}
public void setServiceStatus(String serviceStatus) {
this.serviceStatus = serviceStatus;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy