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