You've already forked qlg.tsgz.moe
addons
app_download_files
extend
hyhproject
admin
behavior
common
conf
controller
model
validate
Accreds.php
AdPositions.php
Adgoods.php
Ads.php
Areas.php
ArticleCats.php
Articles.php
Attributes.php
Banks.php
Brands.php
ChargeItems.php
DataCats.php
Datas.php
Express.php
Friendlinks.php
GoodsAppraises.php
GoodsCats.php
GoodsConsult.php
HomeMenus.php
Menus.php
MobileBtns.php
Navs.php
Payments.php
Privileges.php
Roles.php
Shops.php
SpecCats.php
Staffs.php
UserRanks.php
Users.php
view
app
common
home
home2
mobile2
wechat2
.htaccess
command.php
mobile
oss
static
thinkphp
upload
vendor
wxtmp
.gitignore
.htaccess
.user.ini
404.html
H5B854518.wgt
admin.php
app-release.apk
app_download.html
cash.lock
demo.php
get_startup.php
get_version.php
get_version_new.php
index.html
index.php
reg.lock
robots.txt
17 lines
446 B
PHP
Executable File
17 lines
446 B
PHP
Executable File
<?php
|
|
namespace wstmart\admin\validate;
|
|
use think\Validate;
|
|
/**
|
|
* ============================================================================
|
|
* 银行验证器
|
|
*/
|
|
class Banks extends Validate{
|
|
protected $rule = [
|
|
['bankName' ,'require|max:30','请输入银行名称|银行名称不能超过10个字符'],
|
|
];
|
|
|
|
protected $scene = [
|
|
'add' => ['bankName'],
|
|
'edit' => ['bankName'],
|
|
];
|
|
} |