40 lines
530 B
PHP
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;
|
|
}
|
|
?>
|