12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace app\common\validate;
- use think\Validate;
- /**
- * ============================================================================
- *
- * ============================================================================
- * 版权所有 2014-2028 浙江惠利玛产业互联网有限公司,并保留所有权利。
- * 网站地址: https://www.valimart.net/
- * ----------------------------------------------------------------------------
- *
- * ============================================================================
- * 验证器
- */
- class Message extends Validate
- {
- protected $rule = [
- 'to_member_name'=>'require',
- 'msg_content'=>'require',
- ];
- protected $message = [
- 'to_member_name.require'=>'收件人不能为空',
- 'msg_content.require'=>'内容不能为空',
- ];
- protected $scene = [
- 'savemsg' => ['to_member_name','msg_content'],
- ];
- }
|