REAPI/extend/sdk/taobao/top/domain/ItemMapping.php
2024-09-29 15:43:18 +08:00

40 lines
530 B
PHP

<?php
/**
* 商品映射关系
* @author auto create
*/
class ItemMapping
{
/**
* 奇门仓储字段,C123,string(50),
**/
public $item_id;
/**
* 奇门仓储字段,C123,string(50),
**/
public $item_source;
/**
* 奇门仓储字段,C123,string(50),
**/
public $owner_code;
/**
* 奇门仓储字段,C123,string(50),
**/
public $shop_item_id;
/**
* 奇门仓储字段,C123,string(50),
**/
public $shop_nick;
/**
* 奇门仓储字段,C123,string(50),
**/
public $sku_id;
}
?>