Files
huangjingfen/pro_v3.5.1/app/validate/admin/work/GroupChatAuthValidate.php

35 lines
681 B
PHP
Raw Normal View History

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace app\validate\admin\work;
use think\Validate;
/**
* 自动拉群
* Class GroupChatAuthValidate
* @package app\validate\admin\work
*/
class GroupChatAuthValidate extends Validate
{
/**
* @var array
*/
protected $rule = [
'name' => 'require',
'chat_id' => 'require',
];
/**
* @var array
*/
protected $message = [
'name.require' => '请填写二维码名称',
'chat_id.require' => '请选择群聊',
];
}