38 lines
1.2 KiB
PHP
38 lines
1.2 KiB
PHP
|
<?php
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
// | Niucloud-admin 企业快速开发的saas管理平台
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
// | 官方网址:https://www.niucloud-admin.com
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
// | niucloud团队 版权所有 开源版本可自由商用
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
// | Author: Niucloud Team
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
|
|||
|
namespace app\service\admin\member;
|
|||
|
|
|||
|
use app\model\member\MemberCashOut;
|
|||
|
use app\service\core\member\CoreMemberCashOutConfigService;
|
|||
|
use core\base\BaseAdminService;
|
|||
|
|
|||
|
/**
|
|||
|
* 会员提现设置服务层
|
|||
|
*/
|
|||
|
class MemberCashOutConfigService extends BaseAdminService
|
|||
|
{
|
|||
|
public function __construct()
|
|||
|
{
|
|||
|
parent::__construct();
|
|||
|
$this->model = new MemberCashOut();
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
public function getConfig(){
|
|||
|
return (new CoreMemberCashOutConfigService())->getMemberCashOutConfig($this->site_id);
|
|||
|
}
|
|||
|
|
|||
|
public function setConfig(array $data){
|
|||
|
(new CoreMemberCashOutConfigService())->setMemberCashOutConfig($this->site_id, $data);
|
|||
|
return true;
|
|||
|
}
|
|||
|
}
|