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

35 lines
566 B
PHP
Raw 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
/**
* 商品或sku的hscode信息审核状态。
* @author auto create
*/
class HscodeAuditInfo
{
/**
* 商品或SKU使用的HS海关代码
**/
public $hscode;
/**
* 商品ID
**/
public $item_id;
/**
* hscode信息当前审核状态的具体说明
**/
public $reason;
/**
* SKU的ID
**/
public $sku_id;
/**
* hscode信息当前审核状态HISTORY_ITEM历史已上架商品REJECT审核未通过AUDITING审核中PASS审核通过ERROR获取审核状态异常
**/
public $status;
}
?>