
com.alipay.api.domain.AlipayOpenServicemarketCommodityShopOnlineModel 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
baidu push client api with maven
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-08-25 11:12:07
*/
public class AlipayOpenServicemarketCommodityShopOnlineModel extends AlipayObject {
private static final long serialVersionUID = 6611627848533625953L;
/**
* 服务插件ID
*/
@ApiField("commodity_id")
private String commodityId;
/**
* 店铺ID
*/
@ApiField("shop_id")
private String shopId;
public String getCommodityId() {
return this.commodityId;
}
public void setCommodityId(String commodityId) {
this.commodityId = commodityId;
}
public String getShopId() {
return this.shopId;
}
public void setShopId(String shopId) {
this.shopId = shopId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy