vr-shopxo-plugin/shopxo/app/plugins/wallet/admin/Cashpayment.php

82 lines
2.2 KiB
PHP

<?php
// +----------------------------------------------------------------------
// | ShopXO 国内领先企业级B2C免费开源电商系统
// +----------------------------------------------------------------------
// | Copyright (c) 2011~2099 http://shopxo.net All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( https://opensource.org/licenses/mit-license.php )
// +----------------------------------------------------------------------
// | Author: Devil
// +----------------------------------------------------------------------
namespace app\plugins\wallet\admin;
use app\plugins\wallet\admin\Common;
use app\plugins\wallet\service\CashPaymentService;
/**
* 钱包 - 钱包余额提现微信
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2020-09-10
* @desc description
*/
class CashPayment extends Common
{
/**
* 首页
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2020-09-10
* @desc description
* @param [array] $params [输入参数]
*/
public function Index($params = [])
{
return MyView('../../../plugins/wallet/view/admin/cashpayment/index');
}
/**
* 详情
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2020-09-10
* @desc description
* @param [array] $params [输入参数]
*/
public function Detail($params = [])
{
return MyView('../../../plugins/wallet/view/admin/cashpayment/detail');
}
/**
* 删除
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2021-11-18
* @desc description
* @param [array] $params [输入参数]
*/
public function Delete($params = [])
{
return CashPaymentService::CashPaymentDelete($params);
}
/**
* 全部删除
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2021-11-18
* @desc description
* @param [array] $params [输入参数]
*/
public function AllDelete($params = [])
{
return CashPaymentService::CashPaymentAllDelete($params);
}
}
?>