123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <?php
- // +----------------------------------------------------------------------
- // | Niucloud-admin 企业快速开发的saas管理平台
- // +----------------------------------------------------------------------
- // | 官方网址:https://www.niucloud.com
- // +----------------------------------------------------------------------
- // | niucloud团队 版权所有 开源版本可自由商用
- // +----------------------------------------------------------------------
- // | Author: Niucloud Team
- // +----------------------------------------------------------------------
- namespace app\api\controller\member;
- use app\service\api\member\MemberCashOutAccountService;
- use core\base\BaseApiController;
- use think\Response;
- class CashOutAccount extends BaseApiController
- {
- /**
- * 提现账户列表
- * @return Response
- */
- public function lists(){
- $data = $this->request->params([
- ['account_type', '']
- ]);
- return success((new MemberCashOutAccountService())->getPage($data));
- }
- /**
- * 提现账户信息
- * @param int $account_id
- * @return Response
- */
- public function info(int $account_id){
- return success((new MemberCashOutAccountService())->getInfo($account_id));
- }
- /**
- * 查询首条提现账户按账户类型
- * @return Response
- */
- public function firstInfo(){
- $data = $this->request->params([
- ['account_type', '']
- ]);
- return success((new MemberCashOutAccountService())->getFirstInfo($data));
- }
- /**
- * 添加提现账号
- * @return Response
- */
- public function add(){
- $data = $this->request->params([
- ['account_type', ''],
- ['bank_name', ''],
- ['realname', ''],
- ['account_no', '']
- ]);
- $this->validate($data, 'app\validate\member\CashOutAccount.addOrEdit');
- $id = (new MemberCashOutAccountService())->add($data);
- return success('ADD_SUCCESS', [ 'id' => $id ]);
- }
- /**
- * 编辑提现账号
- * @param int $account_id
- * @return Response
- */
- public function edit(int $account_id){
- $data = $this->request->params([
- ['account_type', ''],
- ['bank_name', ''],
- ['realname', ''],
- ['account_no', '']
- ]);
- $this->validate($data, 'app\validate\member\CashOutAccount.addOrEdit');
- (new MemberCashOutAccountService())->edit($account_id, $data);
- return success('EDIT_SUCCESS');
- }
- /**
- * 删除提现账号
- * @param int $account_id
- * @return Response
- */
- public function del(int $account_id){
- (new MemberCashOutAccountService())->del($account_id);
- return success('DELETE_SUCCESS');
- }
- }
|