File: /www/wwwroot/crm.jmfdbn.com/application/message/validate/MessageGroup.php
<?php
// +----------------------------------------------------------------------
// | Yzncms [ 御宅男工作室 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2018 http://yzncms.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: 御宅男 <530765310@qq.com>
// +----------------------------------------------------------------------
// +----------------------------------------------------------------------
// | 模型验证
// +----------------------------------------------------------------------
namespace app\message\validate;
use think\Validate;
class MessageGroup extends Validate
{
//定义验证规则
protected $rule = [
'groupid|会员组' => 'require',
'subject|标题' => 'require',
'content|内容' => 'require',
];
}