com.alipay.api.domain.AlipayCloudCloudpromoMallSkustatusQueryModel 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 java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 查询sku售卖信息
*
* @author auto create
* @since 1.0, 2024-07-10 11:15:52
*/
public class AlipayCloudCloudpromoMallSkustatusQueryModel extends AlipayObject {
private static final long serialVersionUID = 2154715419331627437L;
/**
* 地区码,查询商品在该区域是否可售
*/
@ApiField("division_code")
private String divisionCode;
/**
* 分销店铺id
*/
@ApiField("purchaser_id")
private String purchaserId;
/**
* sku查询请求信息
*/
@ApiListField("sku_query_params")
@ApiField("sku_query_param")
private List skuQueryParams;
public String getDivisionCode() {
return this.divisionCode;
}
public void setDivisionCode(String divisionCode) {
this.divisionCode = divisionCode;
}
public String getPurchaserId() {
return this.purchaserId;
}
public void setPurchaserId(String purchaserId) {
this.purchaserId = purchaserId;
}
public List getSkuQueryParams() {
return this.skuQueryParams;
}
public void setSkuQueryParams(List skuQueryParams) {
this.skuQueryParams = skuQueryParams;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy