first commit

This commit is contained in:
Your Name
2026-01-19 14:19:22 +08:00
commit fe2d9c1868
4777 changed files with 665503 additions and 0 deletions

View File

@@ -0,0 +1,113 @@
<?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 WithdrawBankValidate
* @package app\adminapi\validate\withdraw
*/
class WithdrawBankValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require',
'lang_id' => 'require',
'name' => 'require',
'is_show' => 'require',
'sort' => 'require',
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
'lang_id' => '所属语言',
'name' => '银行名称',
'is_show' => '是否显示',
'sort' => '排序',
];
/**
* @notes 添加场景
* @return WithdrawBankValidate
* @author BD
* @date 2024/02/25 12:19
*/
public function sceneAdd()
{
return $this->only(['lang_id','name','is_show','sort']);
}
/**
* @notes 编辑场景
* @return WithdrawBankValidate
* @author BD
* @date 2024/02/25 12:19
*/
public function sceneEdit()
{
return $this->only(['id','lang_id','name','is_show','sort']);
}
/**
* @notes 删除场景
* @return WithdrawBankValidate
* @author BD
* @date 2024/02/25 12:19
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return WithdrawBankValidate
* @author BD
* @date 2024/02/25 12:19
*/
public function sceneDetail()
{
return $this->only(['id']);
}
/**
* @notes 所有银行场景
* @return WithdrawBankValidate
* @author BD
* @date 2024/02/25 12:19
*/
public function sceneAllByLang()
{
return $this->only(['lang_id']);
}
}

View 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']);
}
}

View 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']);
}
}