You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.2 KiB
39 lines
1.2 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|
// +----------------------------------------------------------------------
|
|
// | Author: CRMEB Team <admin@crmeb.com>
|
|
// +----------------------------------------------------------------------
|
|
namespace app\validate\admin\notification;
|
|
|
|
use think\Validate;
|
|
|
|
/**
|
|
*
|
|
* Class SmsConfigValidate
|
|
* @package app\validates\admin
|
|
*/
|
|
class SmsConfigValidate extends Validate
|
|
{
|
|
/**
|
|
* 定义验证规则
|
|
* @var array
|
|
*/
|
|
protected $rule = [
|
|
'sms_account' => ['require'],
|
|
'sms_token' => ['require'],
|
|
];
|
|
|
|
/**
|
|
* 定义错误信息
|
|
* @var array
|
|
*/
|
|
protected $message = [
|
|
'sms_account.require' => '短信账号必须填写',
|
|
'sms_token.require' => '短信密码必须填写',
|
|
];
|
|
}
|
|
|