shop-php/extend/taobao/domain/PromotionList.php
2024-01-26 09:39:36 +08:00

30 lines
518 B
PHP
Executable File
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 PromotionList
{
/**
* 权益起用门槛满X元可用券场景为满元精确到分如满100元可用
**/
public $entry_condition;
/**
* 权益面额,券场景为减钱,精确到分
**/
public $entry_discount;
/**
* 权益结束时间,精确到毫秒时间戳
**/
public $entry_used_end_time;
/**
* 权益开始时间,精确到毫秒时间戳
**/
public $entry_used_start_time;
}
?>