1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- namespace app\validate\admin;
- use think\Validate;
- /**
- * Class WechatReplyValidate
- * @package app\validate\admin
- * @author zfy
- * @day 2020-04-27
- */
- class WechatReplyValidate extends Validate
- {
- /**
- * @var bool
- */
- protected $failException = true;
- /**
- * @var array
- */
- protected $rule = [
- 'type|类型' => 'require|in:text,image,news,voice',
- 'key|关键字' => 'require|max:32',
- 'data|回复内容' => 'require|array',
- 'status|开启状态' => 'require|in:0,1'
- ];
- /**
- * @return $this
- * @author zfy
- * @day 2020-04-27
- */
- public function isUpdate()
- {
- unset($this->rule['key|关键字']);
- return $this;
- }
- }
|