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

60 lines
1013 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 OpenLogicGroupRule
{
/**
* 逻辑分组上满N元条件当阶梯的is_amount=true时生效逻辑分组条件的优先级大于阶梯条件的优先级
**/
public $amount;
/**
* 换购N件
**/
public $can_extra_item_num;
/**
* 逻辑分组上满N件条件当阶梯的is_count=true时生效逻辑分组条件的优先级大于阶梯条件的优先级
**/
public $count;
/**
* 整体优惠
**/
public $cover_all_discount_rule;
/**
* 换购分组名称
**/
public $exchange_group_name;
/**
* 换购分组排序用于在app上展示的顺序
**/
public $exchange_group_order;
/**
* 是否为优惠作用分组
**/
public $is_effective_group;
/**
* 1-普通分组2-换购分组3-买赠分组
**/
public $logic_group_type;
/**
* 商家逻辑分组Id单个活动不能重复
**/
public $number;
/**
* 分摊比例
**/
public $ratio;
}
?>