first commit
This commit is contained in:
82
app/adminapi/validate/withdraw/WithdrawWalletValidate.php
Normal file
82
app/adminapi/validate/withdraw/WithdrawWalletValidate.php
Normal file
@@ -0,0 +1,82 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||||
// +----------------------------------------------------------------------
|
||||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||||
// | 开源版本可自由商用,可去除界面版权logo
|
||||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||||
// | 访问官网:https://www.likeadmin.cn
|
||||
// | likeadmin团队 版权所有 拥有最终解释权
|
||||
// +----------------------------------------------------------------------
|
||||
// | author: likeadminTeam
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\adminapi\validate\withdraw;
|
||||
|
||||
|
||||
use app\common\validate\BaseValidate;
|
||||
|
||||
|
||||
/**
|
||||
* 用户提现钱包验证器
|
||||
* Class WithdrawWalletValidate
|
||||
* @package app\adminapi\validate\withdraw
|
||||
*/
|
||||
class WithdrawWalletValidate extends BaseValidate
|
||||
{
|
||||
|
||||
/**
|
||||
* 设置校验规则
|
||||
* @var string[]
|
||||
*/
|
||||
protected $rule = [
|
||||
'id' => 'require',
|
||||
'lang_id' => 'require',
|
||||
'user_id' => 'require',
|
||||
'method_id' => 'require',
|
||||
'type' => 'require',
|
||||
'account' => 'require',
|
||||
'is_disable' => 'require',
|
||||
];
|
||||
|
||||
|
||||
/**
|
||||
* 参数描述
|
||||
* @var string[]
|
||||
*/
|
||||
protected $field = [
|
||||
'id' => 'id',
|
||||
'lang_id' => '所属语言',
|
||||
'user_id' => '用户id',
|
||||
'method_id' => '提现方式id',
|
||||
'type' => '类型',
|
||||
'account' => '账号',
|
||||
'is_disable' => '是否禁用',
|
||||
];
|
||||
|
||||
|
||||
/**
|
||||
* @notes 编辑场景
|
||||
* @return WithdrawWalletValidate
|
||||
* @author BD
|
||||
* @date 2024/02/26 13:32
|
||||
*/
|
||||
public function sceneEdit()
|
||||
{
|
||||
return $this->only(['id','account','is_disable']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 删除场景
|
||||
* @return WithdrawWalletValidate
|
||||
* @author BD
|
||||
* @date 2024/02/26 13:32
|
||||
*/
|
||||
public function sceneDelete()
|
||||
{
|
||||
return $this->only(['id']);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user