com.alipay.api.domain.PromoteItemModel 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 com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 分佣推广标的商品模型
*
* @author auto create
* @since 1.0, 2017-02-16 20:40:27
*/
public class PromoteItemModel extends AlipayObject {
private static final long serialVersionUID = 1824538298359695623L;
/**
* 品牌名称
*/
@ApiField("brand_name")
private String brandName;
/**
* 商户名称
*/
@ApiField("merchant_name")
private String merchantName;
/**
* 券名称
*/
@ApiField("voucher_name")
private String voucherName;
public String getBrandName() {
return this.brandName;
}
public void setBrandName(String brandName) {
this.brandName = brandName;
}
public String getMerchantName() {
return this.merchantName;
}
public void setMerchantName(String merchantName) {
this.merchantName = merchantName;
}
public String getVoucherName() {
return this.voucherName;
}
public void setVoucherName(String voucherName) {
this.voucherName = voucherName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy