18 lines
284 B
PHP
18 lines
284 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 CouponType
|
||
|
* @package app\model
|
||
|
*/
|
||
|
class CouponType extends Base
|
||
|
{
|
||
|
|
||
|
}
|