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