test_lgq/niucloud/app/validate/member/CashOutConfig.php
2024-01-24 17:36:08 +08:00

44 lines
1.6 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | Niucloud-admin 企业快速开发的saas管理平台
// +----------------------------------------------------------------------
// | 官方网址https://www.niucloud-admin.com
// +----------------------------------------------------------------------
// | niucloud团队 版权所有 开源版本可自由商用
// +----------------------------------------------------------------------
// | Author: Niucloud Team
// +----------------------------------------------------------------------
namespace app\validate\member;
use think\Validate;
/**
* 提现设置验证类
*/
class CashOutConfig extends Validate
{
protected $rule = [
'is_open' => 'in:0,1', //是否开启
'min' => 'min:0', //最低提现金额
'rate' => 'between:0,100', //提现手续费比率
'is_auto_verify' => 'in:0,1', //是否自动审核
'is_auto_transfer' => 'in:0,1', //是否自动转账
'transfer_type' => 'require',
];
protected $message = [
'is_open.in' => 'validate_member.cash_out_is_open_in',
'min.min' => 'validate_member.cash_out_min_min',
'rate.between' => 'validate_member.cash_out_rate_between',
'is_auto_verify.in' => 'validate_member.cash_out_is_auto_verify_in',
'is_auto_transfer.in' => 'validate_member.cash_out_is_auto_transfer_in',
'transfer_type.require' => 'validate_member_cash_out_config.transfer_type_require',
];
protected $scene = [
'set' => ['is_open', 'min', 'rate', 'is_auto_verify', 'is_auto_transfer', 'transfer_type'],
];
}