|  |  |  | @ -1,20 +1,11 @@ | 
			
		
	
		
			
				
					|  |  |  |  | package com.glxp.api.controller.collect; | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; | 
			
		
	
		
			
				
					|  |  |  |  | import com.github.pagehelper.PageInfo; | 
			
		
	
		
			
				
					|  |  |  |  | import com.glxp.api.common.enums.ResultEnum; | 
			
		
	
		
			
				
					|  |  |  |  | import com.glxp.api.common.res.BaseResponse; | 
			
		
	
		
			
				
					|  |  |  |  | import com.glxp.api.common.util.ResultVOUtils; | 
			
		
	
		
			
				
					|  |  |  |  | import com.glxp.api.controller.BaseController; | 
			
		
	
		
			
				
					|  |  |  |  | import com.glxp.api.entity.collect.IoCollectOrder; | 
			
		
	
		
			
				
					|  |  |  |  | import com.glxp.api.entity.collect.IoCollectSet; | 
			
		
	
		
			
				
					|  |  |  |  | import com.glxp.api.req.collect.CollectOrderCodeManRequest; | 
			
		
	
		
			
				
					|  |  |  |  | import com.glxp.api.req.inout.AddTagCodeReqeust; | 
			
		
	
		
			
				
					|  |  |  |  | import com.glxp.api.res.PageSimpleResponse; | 
			
		
	
		
			
				
					|  |  |  |  | import com.glxp.api.res.collect.CollectOrderCodeManResponse; | 
			
		
	
		
			
				
					|  |  |  |  | import com.glxp.api.service.collect.IoCollectSetService; | 
			
		
	
		
			
				
					|  |  |  |  | import lombok.extern.slf4j.Slf4j; | 
			
		
	
		
			
				
					|  |  |  |  | import org.springframework.validation.BindingResult; | 
			
		
	
		
			
				
					|  |  |  |  | import org.springframework.web.bind.annotation.GetMapping; | 
			
		
	
		
			
				
					|  |  |  |  | import org.springframework.web.bind.annotation.PostMapping; | 
			
		
	
		
			
				
					|  |  |  |  | import org.springframework.web.bind.annotation.RequestBody; | 
			
		
	
	
		
			
				
					|  |  |  | @ -32,7 +23,6 @@ public class IoCollectSetController extends BaseController { | 
			
		
	
		
			
				
					|  |  |  |  |     IoCollectSetService collectSetService; | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  |     @GetMapping("/udiwms/ioSplit/collect/getSet") | 
			
		
	
		
			
				
					|  |  |  |  |     public BaseResponse getSet() { | 
			
		
	
		
			
				
					|  |  |  |  |         IoCollectSet  collectSet =  collectSetService.getSet(); | 
			
		
	
	
		
			
				
					|  |  |  | @ -40,7 +30,6 @@ public class IoCollectSetController extends BaseController { | 
			
		
	
		
			
				
					|  |  |  |  |     } | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  |     @PostMapping("/udiwms/ioSplit/collect/updateSet") | 
			
		
	
		
			
				
					|  |  |  |  |     public BaseResponse updateSet(@RequestBody @Valid IoCollectSet collectSet) { | 
			
		
	
		
			
				
					|  |  |  |  |         collectSetService.updateById(collectSet); | 
			
		
	
	
		
			
				
					|  |  |  | 
 |