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