| 123456789101112131415161718192021 | 
							- <?php
 
- namespace app\common\validate;
 
- use think\Validate;
 
- class HouseCType extends Validate{
 
-     protected $rule = [
 
-         'name|名称'  =>  'require|length:1,200',
 
-         'cate|资源属性'  =>  'require',
 
-     ];
 
-     protected $message = [
 
-         'name.length' => '名称必须200字以内',
 
-     ];
 
-     protected $scene = [
 
-     ];
 
- }
 
 
  |