|  |  |  | @ -1,16 +1,17 @@ | 
			
		
	
		
			
				
					|  |  |  |  | package com.glxp.api.admin.service.inventory.impl; | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  | import com.glxp.api.admin.dao.inventory.DeviceCollectOrderDao; | 
			
		
	
		
			
				
					|  |  |  |  | import com.glxp.api.admin.dao.inventory.DeviceCollectOrderDetailDao; | 
			
		
	
		
			
				
					|  |  |  |  | import com.glxp.api.admin.entity.inventory.DeviceCollectOrderEntity; | 
			
		
	
		
			
				
					|  |  |  |  | import com.glxp.api.admin.req.inventory.FilterDeviceCollectOrderRequest; | 
			
		
	
		
			
				
					|  |  |  |  | import com.glxp.api.admin.res.inventory.DeviceCollectOrderResponse; | 
			
		
	
		
			
				
					|  |  |  |  | import com.glxp.api.admin.service.inventory.DeviceCollectOrderService; | 
			
		
	
		
			
				
					|  |  |  |  | import com.glxp.api.common.enums.ResultEnum; | 
			
		
	
		
			
				
					|  |  |  |  | import com.glxp.api.common.res.BaseResponse; | 
			
		
	
		
			
				
					|  |  |  |  | import com.glxp.api.common.util.ResultVOUtils; | 
			
		
	
		
			
				
					|  |  |  |  | import lombok.extern.slf4j.Slf4j; | 
			
		
	
		
			
				
					|  |  |  |  | import org.springframework.stereotype.Service; | 
			
		
	
		
			
				
					|  |  |  |  | import org.springframework.transaction.annotation.Transactional; | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  | import javax.annotation.Resource; | 
			
		
	
		
			
				
					|  |  |  |  | import java.util.List; | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  | @Slf4j | 
			
		
	
	
		
			
				
					|  |  |  | @ -18,7 +19,10 @@ import java.util.List; | 
			
		
	
		
			
				
					|  |  |  |  | @Transactional(rollbackFor = Exception.class) | 
			
		
	
		
			
				
					|  |  |  |  | public class DeviceCollectOrderServiceImpl implements DeviceCollectOrderService { | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  |     @Resource | 
			
		
	
		
			
				
					|  |  |  |  |     private DeviceCollectOrderDao deviceCollectOrderDao; | 
			
		
	
		
			
				
					|  |  |  |  |     @Resource | 
			
		
	
		
			
				
					|  |  |  |  |     private DeviceCollectOrderDetailDao deviceCollectOrderDetailDao; | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  |     @Override | 
			
		
	
		
			
				
					|  |  |  |  |     public List<DeviceCollectOrderResponse> filterList(FilterDeviceCollectOrderRequest deviceCollectOrderRequest) { | 
			
		
	
	
		
			
				
					|  |  |  | 
 |