// +---------------------------------------------------------------------- declare (strict_types=1); namespace app\api\controller; use app\api\model\Coupon as CouponModel; use app\common\enum\coupon\TypeCase; use cores\exception\BaseException; use think\db\exception\DataNotFoundException; use think\db\exception\DbException; use think\db\exception\ModelNotFoundException; use think\response\Json; /** * 优惠券中心 * Class Coupon * @package app\api\controller */ class Coupon extends Controller { /** * 优惠券列表-商品 * @return Json * @throws BaseException * @throws DataNotFoundException * @throws DbException * @throws ModelNotFoundException */ public function list(): Json { $model = new CouponModel; $list = $model->getList(null, false, ['coupon_case' => TypeCase::SHOP]); return $this->renderSuccess(compact('list')); } /** * @notes:优惠券列表-服务 * @return Json * @throws BaseException * @throws DataNotFoundException * @throws DbException * @throws ModelNotFoundException * @author: wanghousheng */ public function server(): Json { $model = new CouponModel; $list = $model->getList(null, false, ['coupon_case' => TypeCase::SERVER]); return $this->renderSuccess(compact('list')); } }