com.alipay.api.domain.AlipayDataAiserviceCloudbusPredictbuslineSubmitModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 公交路线预测接口1
*
* @author auto create
* @since 1.0, 2020-10-21 10:38:17
*/
public class AlipayDataAiserviceCloudbusPredictbuslineSubmitModel extends AlipayObject {
private static final long serialVersionUID = 6564741573983312176L;
/**
* 接口版本
*/
@ApiField("app_version")
private String appVersion;
/**
* 市
*/
@ApiField("city_code")
private String cityCode;
/**
* 商户ID
*/
@ApiField("partner_id")
private String partnerId;
/**
* 公交线路版本号
*/
@ApiField("route_version")
private String routeVersion;
/**
* 客流预测公交线路列表
*/
@ApiListField("routes")
@ApiField("cloudbus_route")
private List routes;
/**
* 客流预测任务描述
*/
@ApiField("title")
private String title;
public String getAppVersion() {
return this.appVersion;
}
public void setAppVersion(String appVersion) {
this.appVersion = appVersion;
}
public String getCityCode() {
return this.cityCode;
}
public void setCityCode(String cityCode) {
this.cityCode = cityCode;
}
public String getPartnerId() {
return this.partnerId;
}
public void setPartnerId(String partnerId) {
this.partnerId = partnerId;
}
public String getRouteVersion() {
return this.routeVersion;
}
public void setRouteVersion(String routeVersion) {
this.routeVersion = routeVersion;
}
public List getRoutes() {
return this.routes;
}
public void setRoutes(List routes) {
this.routes = routes;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy