20 lines
453 B
PHP
20 lines
453 B
PHP
![]() |
<?php
|
|||
|
|
|||
|
/**
|
|||
|
* 批量更新商品/SKU发货时间的备选项
|
|||
|
* @author auto create
|
|||
|
*/
|
|||
|
class UpdateItemShipTimeOption
|
|||
|
{
|
|||
|
|
|||
|
/**
|
|||
|
* 0代表清空匹配的SKU发货时间数据或者商品发货时间数据;1代表:固定发货时间;2代表:相对发货时间
|
|||
|
**/
|
|||
|
public $ship_time_type;
|
|||
|
|
|||
|
/**
|
|||
|
* 更新类型,默认不填时更新sku,0表示更新sku,1表示更新商品维度,其他值均非法
|
|||
|
**/
|
|||
|
public $update_type;
|
|||
|
}
|
|||
|
?>
|