20 lines
320 B
PHP
20 lines
320 B
PHP
![]() |
<?php
|
|||
|
|
|||
|
/**
|
|||
|
* 兼容历史逻辑配置
|
|||
|
* @author auto create
|
|||
|
*/
|
|||
|
class CouponTemplateCompatibleConfig
|
|||
|
{
|
|||
|
|
|||
|
/**
|
|||
|
* 优惠券应用类型 pointCoupon:积分券
|
|||
|
**/
|
|||
|
public $application_type;
|
|||
|
|
|||
|
/**
|
|||
|
* 是否要求优惠券在一天的23:59:59失效 1表示最后一秒失效
|
|||
|
**/
|
|||
|
public $valid_till_night;
|
|||
|
}
|
|||
|
?>
|