com.antgroup.antchain.openapi.twc.models.SupplierLogisticInfo 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 SupplierLogisticInfo extends TeaModel {
// 采购平台的物流单号
@NameInMap("logistic_order_id")
@Validation(required = true)
public String logisticOrderId;
public static SupplierLogisticInfo build(java.util.Map map) throws Exception {
SupplierLogisticInfo self = new SupplierLogisticInfo();
return TeaModel.build(map, self);
}
public SupplierLogisticInfo setLogisticOrderId(String logisticOrderId) {
this.logisticOrderId = logisticOrderId;
return this;
}
public String getLogisticOrderId() {
return this.logisticOrderId;
}
}