first commit
This commit is contained in:
112
app/adminapi/validate/withdraw/WithdrawMethodValidate.php
Normal file
112
app/adminapi/validate/withdraw/WithdrawMethodValidate.php
Normal file
@@ -0,0 +1,112 @@
|
||||
<?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 WithdrawMethodValidate
|
||||
* @package app\adminapi\validate\withdraw
|
||||
*/
|
||||
class WithdrawMethodValidate extends BaseValidate
|
||||
{
|
||||
|
||||
/**
|
||||
* 设置校验规则
|
||||
* @var string[]
|
||||
*/
|
||||
protected $rule = [
|
||||
'id' => 'require',
|
||||
'lang_id' => 'require',
|
||||
'type' => 'require',
|
||||
'name' => 'require',
|
||||
'symbol' => 'require',
|
||||
'rate' => 'require',
|
||||
'precision' => 'require',
|
||||
'charge' => 'require',
|
||||
'is_show' => 'require',
|
||||
'sort' => 'require',
|
||||
];
|
||||
|
||||
|
||||
/**
|
||||
* 参数描述
|
||||
* @var string[]
|
||||
*/
|
||||
protected $field = [
|
||||
'id' => 'id',
|
||||
'lang_id' => '所属语言',
|
||||
'type' => '类型',
|
||||
'name' => '名称',
|
||||
'symbol' => '货币符号',
|
||||
'rate' => '汇率',
|
||||
'precision' => '显示精度',
|
||||
'charge' => '手续费',
|
||||
'is_show' => '显示状态',
|
||||
'sort' => '排序',
|
||||
];
|
||||
|
||||
|
||||
/**
|
||||
* @notes 添加场景
|
||||
* @return WithdrawMethodValidate
|
||||
* @author likeadmin
|
||||
* @date 2024/02/23 14:34
|
||||
*/
|
||||
public function sceneAdd()
|
||||
{
|
||||
return $this->only(['lang_id','type','name','symbol','rate','precision','charge','is_show','sort']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 编辑场景
|
||||
* @return WithdrawMethodValidate
|
||||
* @author likeadmin
|
||||
* @date 2024/02/23 14:34
|
||||
*/
|
||||
public function sceneEdit()
|
||||
{
|
||||
return $this->only(['id','lang_id','type','name','symbol','rate','precision','charge','is_show','sort']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 删除场景
|
||||
* @return WithdrawMethodValidate
|
||||
* @author likeadmin
|
||||
* @date 2024/02/23 14:34
|
||||
*/
|
||||
public function sceneDelete()
|
||||
{
|
||||
return $this->only(['id']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 详情场景
|
||||
* @return WithdrawMethodValidate
|
||||
* @author likeadmin
|
||||
* @date 2024/02/23 14:34
|
||||
*/
|
||||
public function sceneDetail()
|
||||
{
|
||||
return $this->only(['id']);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user