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

25 lines
490 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 Rulestairs
{
/**
* 满多少元[单位为分传入700代表满7元]amountAt为true时必须设置
**/
public $amount;
/**
* 是否使用满元条件不能与满件、N件Y折同时使用。此选项为true时countAt和countBegin必须为false
**/
public $amount_at;
/**
* 如果为换购活动,则代表此阶梯可换购的商品数量
**/
public $can_extra_item_num;
}
?>