com.antgroup.antchain.openapi.twc.models.SupplierOrderProductInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-twc Show documentation
Show all versions of openapi-twc Show documentation
Ant Chain TWC SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.twc.models;
import com.aliyun.tea.*;
public class SupplierOrderProductInfo extends TeaModel {
// 商品id
@NameInMap("product_id")
@Validation(required = true)
public String productId;
// 商品采购单价,单位:毫厘
@NameInMap("product_price")
@Validation(required = true)
public Long productPrice;
// 商品的sn信息
@NameInMap("sn_list")
@Validation(required = true)
public java.util.List snList;
public static SupplierOrderProductInfo build(java.util.Map map) throws Exception {
SupplierOrderProductInfo self = new SupplierOrderProductInfo();
return TeaModel.build(map, self);
}
public SupplierOrderProductInfo setProductId(String productId) {
this.productId = productId;
return this;
}
public String getProductId() {
return this.productId;
}
public SupplierOrderProductInfo setProductPrice(Long productPrice) {
this.productPrice = productPrice;
return this;
}
public Long getProductPrice() {
return this.productPrice;
}
public SupplierOrderProductInfo setSnList(java.util.List snList) {
this.snList = snList;
return this;
}
public java.util.List getSnList() {
return this.snList;
}
}