12345678910111213141516171819202122 |
- <?php
- namespace app\common\validate;
- use think\Validate;
- class FCleanForm extends Validate{
- protected $rule = [
- 'title|名称' => 'require|length:1,200',
- 'type_id|任务项' => 'require',
- 'address_ids|地点' => 'require',
- ];
- protected $message = [
- 'title.length' => '名称必须200字以内',
- ];
- protected $scene = [
- ];
- }
|