You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
394 B
21 lines
394 B
<?php
|
|
|
|
namespace app\admin\validate;
|
|
use think\Validate;
|
|
/**
|
|
* 设置模型
|
|
*/
|
|
class AdminRecord extends Validate{
|
|
|
|
protected $rule = [
|
|
'category' => 'require',
|
|
'content' => 'require',
|
|
];
|
|
protected $message = [
|
|
'category.require' => '跟进类型必须填写',
|
|
'content.require' => '日志内容必须填写',
|
|
];
|
|
protected $scene = [
|
|
'edit' => [],
|
|
];
|
|
} |