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

40 lines
413 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* 识别码列表
* @author auto create
*/
class TopIdentCodeDTO
{
/**
* 是否可用
**/
public $available;
/**
* 品牌ID
**/
public $brand_id;
/**
* 识别码
**/
public $ident_code;
/**
* 识别码类型SN/IMEI
**/
public $ident_type;
/**
* 根类目ID
**/
public $root_cat_id;
/**
* 不可用原因
**/
public $un_available_reason;
}
?>