21 lines
		
	
	
		
			471 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
			
		
		
	
	
			21 lines
		
	
	
		
			471 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
<?php
 | 
						|
namespace app\validate;
 | 
						|
 | 
						|
use think\Validate;
 | 
						|
 | 
						|
class FeedbackValidate extends Validate
 | 
						|
{
 | 
						|
 | 
						|
    protected $rule = [
 | 
						|
        'type_id|问题类型'  => 'require|number|gt:0',
 | 
						|
        'content|建议意见'  => 'require|max:3000',
 | 
						|
        'user_name|姓名'   => 'max:50',
 | 
						|
        'user_phone|联系电话'   => 'max:50',
 | 
						|
    ];
 | 
						|
 | 
						|
    protected $scene    = [
 | 
						|
        // 添加投诉与建议
 | 
						|
        'add'   => ['type_id', 'content', 'user_name', 'user_phone'],
 | 
						|
    ];
 | 
						|
 | 
						|
} |