65 lines
592 B
PHP
65 lines
592 B
PHP
<?php
|
|
|
|
/**
|
|
* 实际返回对象
|
|
* @author auto create
|
|
*/
|
|
class ErrorCode
|
|
{
|
|
|
|
/**
|
|
* 特征
|
|
**/
|
|
public $features;
|
|
|
|
/**
|
|
* 分组信息
|
|
**/
|
|
public $fields;
|
|
|
|
/**
|
|
* 创建时间
|
|
**/
|
|
public $gmt_create;
|
|
|
|
/**
|
|
* 更新时间
|
|
**/
|
|
public $gmt_modified;
|
|
|
|
/**
|
|
* 市场
|
|
**/
|
|
public $market;
|
|
|
|
/**
|
|
* 商品id
|
|
**/
|
|
public $outer_id;
|
|
|
|
/**
|
|
* 分组id
|
|
**/
|
|
public $seg_id;
|
|
|
|
/**
|
|
* 用户id
|
|
**/
|
|
public $seller_id;
|
|
|
|
/**
|
|
* 系列id
|
|
**/
|
|
public $series_id;
|
|
|
|
/**
|
|
* 排序值
|
|
**/
|
|
public $sort;
|
|
|
|
/**
|
|
* 状态
|
|
**/
|
|
public $status;
|
|
}
|
|
?>
|