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

30 lines
502 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 MaifanPromotionDTO
{
/**
* 猫超买返卡总数,-1代表不限量其他大于等于0的值为总数
**/
public $maifan_promotion_condition;
/**
* 猫超买返卡面额
**/
public $maifan_promotion_discount;
/**
* 猫超买返卡活动结束时间
**/
public $maifan_promotion_end_time;
/**
* 猫超买返卡活动开始时间
**/
public $maifan_promotion_start_time;
}
?>