|  | @@ -19,7 +19,6 @@ import org.springframework.beans.factory.annotation.Autowired;
 | 
	
		
			
				|  |  |  import org.springframework.security.access.prepost.PreAuthorize;
 | 
	
		
			
				|  |  |  import org.springframework.web.bind.annotation.*;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -import java.util.ArrayList;
 | 
	
		
			
				|  |  |  import java.util.List;
 | 
	
		
			
				|  |  |  import java.util.Map;
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -127,6 +126,13 @@ public class TStorageFeeCalculationController extends BaseController {
 | 
	
		
			
				|  |  |          return toAjax(itWarehouseBillsService.deleteTWarehousebillsByIds(fIds));
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +    @PreAuthorize("@ss.hasPermi('warehouseBusiness:storageFeeCalculation:remove')")
 | 
	
		
			
				|  |  | +    @Log(title = "详情主表", businessType = BusinessType.DELETE)
 | 
	
		
			
				|  |  | +    @DeleteMapping("/queryRemove/{fId}")
 | 
	
		
			
				|  |  | +    public AjaxResult queryRemove(@PathVariable("fId") Long fId) {
 | 
	
		
			
				|  |  | +        return itWarehouseBillsService.queryRemove(fId);
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |      /**
 | 
	
		
			
				|  |  |       * 导出入库详情主表列表
 | 
	
		
			
				|  |  |       */
 |