com.alipay.api.domain.ItemSkuCreateInfo 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, 2019-09-18 10:42:17
*/
public class ItemSkuCreateInfo extends AlipayObject {
private static final long serialVersionUID = 4122656993749732844L;
/**
* 成本价,单位分
*/
@ApiField("cost_price")
private Long costPrice;
/**
* SKU扩展信息
*/
@ApiListField("ext_info")
@ApiField("item_ext_info")
private List extInfo;
/**
* 外部SKU ID
*/
@ApiField("external_sku_id")
private String externalSkuId;
/**
* 库存
*/
@ApiField("inventory")
private Long inventory;
/**
* 标价,单位分
*/
@ApiField("original_price")
private Long originalPrice;
/**
* 售价,单位分
*/
@ApiField("price")
private Long price;
public Long getCostPrice() {
return this.costPrice;
}
public void setCostPrice(Long costPrice) {
this.costPrice = costPrice;
}
public List getExtInfo() {
return this.extInfo;
}
public void setExtInfo(List extInfo) {
this.extInfo = extInfo;
}
public String getExternalSkuId() {
return this.externalSkuId;
}
public void setExternalSkuId(String externalSkuId) {
this.externalSkuId = externalSkuId;
}
public Long getInventory() {
return this.inventory;
}
public void setInventory(Long inventory) {
this.inventory = inventory;
}
public Long getOriginalPrice() {
return this.originalPrice;
}
public void setOriginalPrice(Long originalPrice) {
this.originalPrice = originalPrice;
}
public Long getPrice() {
return this.price;
}
public void setPrice(Long price) {
this.price = price;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy