
com.alipay.api.domain.AlipayOpenServicemarketCommodityShopOfflineModel 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:11:17
*/
public class AlipayOpenServicemarketCommodityShopOfflineModel extends AlipayObject {
private static final long serialVersionUID = 8178643329423942349L;
/**
* 服务商户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