13 lines
161 B
PHP
13 lines
161 B
PHP
<?php
|
|
|
|
namespace app\common\constant\course;
|
|
|
|
/**
|
|
* 订单状态
|
|
*/
|
|
class Subscription
|
|
{
|
|
//订阅时间 永久
|
|
const VALIDITY_ETERNITY = 9999999999;
|
|
}
|