35 lines
542 B
PHP
35 lines
542 B
PHP
<?php
|
|
|
|
|
|
|
|
|
|
namespace app\validate\merchant;
|
|
|
|
|
|
use think\Validate;
|
|
|
|
/**
|
|
* Class WechatReplyValidate
|
|
* @package app\validate\admin
|
|
* @author xaboy
|
|
* @day 2020-04-27
|
|
*/
|
|
class ServiceReplyValidate extends Validate
|
|
{
|
|
/**
|
|
* @var bool
|
|
*/
|
|
protected $failException = true;
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $rule = [
|
|
'type|类型' => 'require|in:1,2',
|
|
'keyword|关键字' => 'require|max:32',
|
|
'content|回复内容' => 'require',
|
|
'status|开启状态' => 'require|in:0,1'
|
|
];
|
|
|
|
}
|