com.alipay.api.domain.AntMerchantExpandWarehouseOrderSyncModel 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 com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 仓库转单接口
*
* @author auto create
* @since 1.0, 2023-02-06 14:19:39
*/
public class AntMerchantExpandWarehouseOrderSyncModel extends AlipayObject {
private static final long serialVersionUID = 7532293149381115512L;
/**
* 配送指令ID
*/
@ApiField("assign_item_id")
private String assignItemId;
/**
* 仓库id
*/
@ApiField("new_warehouse_id")
private String newWarehouseId;
/**
* 指令类型
*/
@ApiField("type")
private String type;
public String getAssignItemId() {
return this.assignItemId;
}
public void setAssignItemId(String assignItemId) {
this.assignItemId = assignItemId;
}
public String getNewWarehouseId() {
return this.newWarehouseId;
}
public void setNewWarehouseId(String newWarehouseId) {
this.newWarehouseId = newWarehouseId;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy