All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.antgroup.antchain.openapi.twc.models.SupplierOrderProductInfo Maven / Gradle / Ivy

There is a newer version: 1.12.23
Show newest version
// 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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy