mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-27 14:10:35 +00:00
34 lines
480 B
PHP
34 lines
480 B
PHP
<?php
|
|
/**
|
|
*
|
|
* @author: xaboy<365615158@qq.com>
|
|
* @day: 2018/01/22
|
|
*/
|
|
|
|
namespace app\models\store;
|
|
|
|
|
|
use crmeb\basic\BaseModel;
|
|
use crmeb\traits\ModelTrait;
|
|
|
|
/**
|
|
* TODO 优惠券Model
|
|
* Class StoreCoupon
|
|
* @package app\models\store
|
|
*/
|
|
class StoreCoupon extends BaseModel
|
|
{
|
|
/**
|
|
* 数据表主键
|
|
* @var string
|
|
*/
|
|
protected $pk = 'id';
|
|
|
|
/**
|
|
* 模型名称
|
|
* @var string
|
|
*/
|
|
protected $name = 'store_coupon';
|
|
|
|
use ModelTrait;
|
|
} |