You've already forked qlg.tsgz.moe
Init Repo
This commit is contained in:
20
hyhproject/common/validate/CashConfigs.php
Executable file
20
hyhproject/common/validate/CashConfigs.php
Executable file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
namespace wstmart\common\validate;
|
||||
use think\Validate;
|
||||
/**
|
||||
* ============================================================================
|
||||
* 提现账号验证器
|
||||
*/
|
||||
class CashConfigs extends Validate{
|
||||
protected $rule = [
|
||||
['accTargetId' ,'require','请选择开卡银行'],
|
||||
['accAreaId' ,'require','请选择开卡地区'],
|
||||
['accNo' ,'require','请输入银行卡号'],
|
||||
['accUser' ,'require','请输入持卡人']
|
||||
];
|
||||
|
||||
protected $scene = [
|
||||
'add' => ['accTargetId','accNo','accUser'],
|
||||
'edit' => ['accTargetId','accNo','accUser']
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user