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

30 lines
647 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 UserCredit
{
/**
* 收到的好评总条数。取值范围:大于零的整数
**/
public $good_num;
/**
* 信用等级是根据score生成的信用等级淘宝会员在淘宝网上的信用度分为20个级别级别如level = 1 时表示一心level = 2 时,表示二心
**/
public $level;
/**
* 信用总分(“好评”加一分,“中评”不加分,“差评”扣一分。分越高,等级越高)
**/
public $score;
/**
* 收到的评价总条数。取值范围:大于零的整数
**/
public $total_num;
}
?>