This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
yoshop/source/application/store/model/recharge/Plan.php

58 lines
1.2 KiB
PHP
Raw Normal View History

2020-04-25 22:20:29 +08:00
<?php
namespace app\store\model\recharge;
use app\common\model\recharge\Plan as PlanModel;
/**
* 用户充值订单模型
* Class Plan
* @package app\store\model\recharge
*/
class Plan extends PlanModel
{
/**
* 获取优惠券列表
* @return \think\Paginator
* @throws \think\exception\DbException
*/
public function getList()
{
return $this->where('is_delete', '=', 0)
->order(['sort' => 'asc', 'create_time' => 'desc'])
->paginate(15, false, [
'query' => request()->request()
]);
}
/**
* 添加新记录
* @param $data
* @return false|int
*/
public function add($data)
{
$data['wxapp_id'] = self::$wxapp_id;
return $this->allowField(true)->save($data);
}
/**
* 更新记录
* @param $data
* @return bool|int
*/
public function edit($data)
{
return $this->allowField(true)->save($data) !== false;
}
/**
* 删除记录 (软删除)
* @return bool|int
*/
public function setDelete()
{
return $this->save(['is_delete' => 1]) !== false;
}
}