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

50 lines
637 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
/**
* 该标签操作的历史记录
* @author auto create
*/
class HistoryTradeRelationDo
{
/**
* 记录的创建时间
**/
public $gmt_created;
/**
* 记录的最新修改时间
**/
public $gmt_modified;
/**
* 订单标签记录id
**/
public $id;
/**
* 标签名称
**/
public $tag_name;
/**
* 标签类型 1官方标签 2自定义标签
**/
public $tag_type;
/**
* 标签值json格式
**/
public $tag_value;
/**
* 订单id
**/
public $tid;
/**
* 该标签在消费者端是否显示,0:不显示,1显示
**/
public $visible;
}
?>