17 lines
456 B
PHP
Executable File
17 lines
456 B
PHP
Executable File
<?php
|
|
namespace wstmart\admin\validate;
|
|
use think\Validate;
|
|
/**
|
|
* ============================================================================
|
|
* 快递验证器
|
|
*/
|
|
class express extends Validate{
|
|
protected $rule = [
|
|
['expressName' ,'require|max:30','请输入快递名称|快递名称不能超过10个字符']
|
|
];
|
|
|
|
protected $scene = [
|
|
'add' => ['expressName'],
|
|
'edit' => ['expressName'],
|
|
];
|
|
} |