30 lines
631 B
PHP
30 lines
631 B
PHP
![]() |
<?php
|
|||
|
|
|||
|
/**
|
|||
|
* 返回描述模块信息
|
|||
|
* @author auto create
|
|||
|
*/
|
|||
|
class ModularDescInfo
|
|||
|
{
|
|||
|
|
|||
|
/**
|
|||
|
* 旧描述与新描述共存时间(切换时间)。
|
|||
|
**/
|
|||
|
public $dead_line;
|
|||
|
|
|||
|
/**
|
|||
|
* 运营定义的该商品所属类目的类目级别模块信息列表,列表顺序即为模块顺序。
|
|||
|
**/
|
|||
|
public $itm_dsc_modules;
|
|||
|
|
|||
|
/**
|
|||
|
* 默认值为false,如果此字段为true,则卖家上传的模块化的描述信息可以自定义排序。
|
|||
|
**/
|
|||
|
public $user_order;
|
|||
|
|
|||
|
/**
|
|||
|
* 用户自定义模块数量最大值限制。类目级别模块+用户级别模块必须小于<20
|
|||
|
**/
|
|||
|
public $usr_def_max_num;
|
|||
|
}
|
|||
|
?>
|