12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * @copyright Copyright (c) 2021 勾股工作室
- * @license https://opensource.org/licenses/Apache-2.0
- * @link https://www.gougucms.com
- */
- namespace app\admin\validate;
- use think\facade\Db;
- 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'],
- ];
- }
|