31 lines
648 B
PHP
31 lines
648 B
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2021 勾股工作室
|
|
* @license https://opensource.org/licenses/GPL-3.0
|
|
* @link https://www.gougucms.com
|
|
*/
|
|
|
|
namespace app\home\validate;
|
|
|
|
use think\Validate;
|
|
|
|
class KeywordsCheck extends Validate
|
|
{
|
|
protected $rule = [
|
|
'title' => 'require|unique:keywords',
|
|
'id' => 'require',
|
|
];
|
|
|
|
protected $message = [
|
|
'title.require' => '关键字名称不能为空',
|
|
'title.unique' => '同样的关键字名称已经存在',
|
|
'id.require' => '缺少更新条件',
|
|
];
|
|
|
|
protected $scene = [
|
|
'add' => ['title'],
|
|
'edit' => ['id', 'title'],
|
|
];
|
|
|
|
}
|