REAPI/extend/sdk/taobao/Qimen/top/request/WarehouseinfoSynchronizeRequest.php
2024-09-29 15:43:18 +08:00

80 lines
1.3 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* TOP API: taobao.qimen.warehouseinfo.synchronize request
*
* @author auto create
* @since 1.0, 2019.10.23
*/
class WarehouseinfoSynchronizeRequest
{
/**
* 货主编码string50
**/
private $ownerCode;
/**
* 货主名称string50
**/
private $ownerName;
/**
* 仓库信息
**/
private $warehouseInfos;
private $apiParas = array();
public function setOwnerCode($ownerCode)
{
$this->ownerCode = $ownerCode;
$this->apiParas["ownerCode"] = $ownerCode;
}
public function getOwnerCode()
{
return $this->ownerCode;
}
public function setOwnerName($ownerName)
{
$this->ownerName = $ownerName;
$this->apiParas["ownerName"] = $ownerName;
}
public function getOwnerName()
{
return $this->ownerName;
}
public function setWarehouseInfos($warehouseInfos)
{
$this->warehouseInfos = $warehouseInfos;
$this->apiParas["warehouseInfos"] = $warehouseInfos;
}
public function getWarehouseInfos()
{
return $this->warehouseInfos;
}
public function getApiMethodName()
{
return "taobao.qimen.warehouseinfo.synchronize";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}