com.alipay.api.domain.EduSourceInfo 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:22:20
*/
public class EduSourceInfo extends AlipayObject {
private static final long serialVersionUID = 4642444122668881822L;
/**
* 供应商的LOGO
*/
@ApiField("logo")
private String logo;
/**
* 供应商电话
*/
@ApiField("mobile")
private String mobile;
/**
* 供应商名字
*/
@ApiField("name")
private String name;
public String getLogo() {
return this.logo;
}
public void setLogo(String logo) {
this.logo = logo;
}
public String getMobile() {
return this.mobile;
}
public void setMobile(String mobile) {
this.mobile = mobile;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy