32 lines
		
	
	
		
			760 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			760 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * @copyright Copyright (c) 2023-2024 美天智能科技
 | |
|  * @author 李志强
 | |
|  * @link http://www.meteteme.com
 | |
|  */
 | |
| 
 | |
| namespace app\knowledge\validate;
 | |
| 
 | |
| use think\Validate;
 | |
| 
 | |
| class KnowledgeCheck extends Validate
 | |
| {
 | |
|     protected $rule = [
 | |
|         'title' => 'require',
 | |
|         'desc' => 'require',
 | |
|         'id' => 'require',
 | |
|         'cate_id' => 'require',
 | |
|     ];
 | |
| 
 | |
|     protected $message = [
 | |
|         'title.require' => '标题不能为空',
 | |
|         'cate_id.require' => '所属分类为必选',
 | |
|         'id.require' => '缺少更新条件',
 | |
|         'desc.require' => '描述不能为空',
 | |
|     ];
 | |
| 
 | |
|     protected $scene = [
 | |
|         'add' => ['title', 'cate_id', 'content', 'desc'],
 | |
|         'edit' => ['title', 'cate_id', 'content', 'id', 'desc'],
 | |
|     ];
 | |
| } |