You've already forked qlg.tsgz.moe
							
							
		
			
				
	
	
		
			22 lines
		
	
	
		
			1020 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			1020 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| <?php 
 | |
| namespace wstmart\admin\validate;
 | |
| use think\Validate;
 | |
| /**
 | |
|  * ============================================================================
 | |
|  * 广告位置验证器
 | |
|  */
 | |
| class AdPositions extends Validate{
 | |
| 	protected $rule = [
 | |
| 	    ['positionName'  ,'require|max:60','请输入位置名称|位置名称不能超过30个字符'],
 | |
| 	    ['positionCode'  ,'require|max:60','请输入位置代码|位置代码不能超过20个字符'],
 | |
| 		['positionType'  ,'require','请选择位置类型'],
 | |
| 	    ['positionWidth'  ,'require|number','请输入建议宽度|建议宽度只能为数字'],
 | |
| 	    ['positionHeight'  ,'require|number','请输入建议高度|建议高度只能为数字'],
 | |
| 	    ['apSort'  ,'number','排序号只能为数字'],
 | |
|     ];
 | |
| 
 | |
|     protected $scene = [
 | |
|         'add'   =>  ['positionName','positionCode','positionType','positionWidth','positionHeight','apSort'],
 | |
|         'edit'  =>  ['positionName','positionCode','positionType','positionWidth','positionHeight','apSort'],
 | |
|     ]; 
 | |
| } |