com.alipay.api.domain.WelfareEcoStoreInfo 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, 2016-11-02 19:53:47
*/
public class WelfareEcoStoreInfo extends AlipayObject {
private static final long serialVersionUID = 8519831976647232579L;
/**
* 门店具体位置(中文)
*/
@ApiField("address")
private String address;
/**
* 品牌
*/
@ApiField("brand")
private String brand;
/**
* 门店编号
*/
@ApiField("code")
private String code;
/**
* 门店名称
*/
@ApiField("name")
private String name;
public String getAddress() {
return this.address;
}
public void setAddress(String address) {
this.address = address;
}
public String getBrand() {
return this.brand;
}
public void setBrand(String brand) {
this.brand = brand;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy