1234567891011121314151617181920 |
- <?php
- namespace app\common\validate;
- use think\Validate;
- class Monitor extends Validate{
- protected $rule = [
- 'title|名称' => 'require|length:1,50',
- ];
- protected $message = [
- 'title.length' => '名称必须50字以内',
- ];
- protected $scene = [
- ];
- }
|