Initial commit: queue workspace
Made-with: Cursor
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2016~2026 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' => '短信密码必须填写',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user