28 lines
561 B
PHP
28 lines
561 B
PHP
<?php
|
|
|
|
namespace app\store\model;
|
|
|
|
use app\common\model\UserCoupon as UserCouponModel;
|
|
|
|
/**
|
|
* 用户优惠券模型
|
|
* Class UserCoupon
|
|
* @package app\store\model
|
|
*/
|
|
class UserCoupon extends UserCouponModel
|
|
{
|
|
/**
|
|
* 获取优惠券列表
|
|
* @return \think\Paginator
|
|
* @throws \think\exception\DbException
|
|
*/
|
|
public function getList()
|
|
{
|
|
return $this->with(['user'])
|
|
->order(['create_time' => 'desc'])
|
|
->paginate(15, false, [
|
|
'query' => request()->request()
|
|
]);
|
|
}
|
|
|
|
} |