| 123456789101112131415161718192021222324 |
- <?php
- /**
- * @package merchant
- *
- * @author xaboy
- * @day 2020/5/28
- *
- *
- */
- namespace app\validate\api;
- use think\Validate;
- class InformationValidate extends Validate
- {
- protected $failException = true;
- protected $rule = [
- 'title|标题' => 'require',
- 'images|图片' => 'require',
- 'content|内容' => 'require',
- ];
- }
|