20 lines
379 B
PHP
20 lines
379 B
PHP
<?php
|
|
|
|
namespace app\model;
|
|
|
|
use think\Collection;
|
|
use think\db\exception\DataNotFoundException;
|
|
use think\db\exception\DbException;
|
|
use think\db\exception\ModelNotFoundException;
|
|
|
|
/**
|
|
* 优惠券
|
|
* Class Coupon
|
|
* @package app\model
|
|
*/
|
|
class Coupon extends Base
|
|
{
|
|
//是否验证
|
|
const is_verificated_on = 1;//1已验证
|
|
const is_verificated_off = 0;//0未验证
|
|
} |