You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.8 KiB
54 lines
1.8 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|
// +----------------------------------------------------------------------
|
|
// | Author: CRMEB Team <admin@crmeb.com>
|
|
// +----------------------------------------------------------------------
|
|
declare (strict_types=1);
|
|
|
|
namespace app\services\activity\coupon;
|
|
|
|
use app\services\BaseServices;
|
|
use app\dao\activity\coupon\StoreCouponUserUserDao;
|
|
|
|
/**
|
|
*
|
|
* Class StoreCouponUserUserServices
|
|
* @package app\services\coupon
|
|
*/
|
|
class StoreCouponUserUserServices extends BaseServices
|
|
{
|
|
|
|
/**
|
|
* StoreCouponUserUserServices constructor.
|
|
* @param StoreCouponUserUserDao $dao
|
|
*/
|
|
public function __construct(StoreCouponUserUserDao $dao)
|
|
{
|
|
$this->dao = $dao;
|
|
}
|
|
|
|
/**
|
|
* 获取列表
|
|
* @param array $where
|
|
* @return array
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function getList(array $where)
|
|
{
|
|
[$page, $limit] = $this->getPageValue();
|
|
$list = $this->dao->sysPage($where, $page, $limit);
|
|
foreach ($list as $k => &$v) {
|
|
$v['start_time'] = $v['start_time'] > 0 ? $v['start_time'] : $v['add_time'];
|
|
if ($v['end_time'] < time() || $v['use_time'] != 0) $v['is_fail'] = 1;
|
|
}
|
|
$count = $this->dao->sysCount($where);
|
|
return compact('list', 'count');
|
|
}
|
|
}
|
|
|