jh-admin/addon/pintuan/event/OpenPintuan.php

28 lines
657 B
PHP

<?php
/**
* SaaSMall商城系统 - 团队十年电商经验汇集巨献!
* =========================================================
* Copy right 2019-2029 成都SAAS云科技有限公司, 保留所有权利。
* ----------------------------------------------
* 官方网址: https://www.gobuysaas.com
* =========================================================
*/
namespace addon\pintuan\event;
use addon\pintuan\model\Pintuan;
/**
* 启动活动
*/
class OpenPintuan
{
public function handle($params)
{
$pintuan = new Pintuan();
$res = $pintuan->cronOpenPintuan($params['relate_id']);
return $res;
}
}