|  | @@ -42,7 +42,7 @@ import io.swagger.annotations.Api;
 | 
	
		
			
				|  |  |  import io.swagger.annotations.ApiOperation;
 | 
	
		
			
				|  |  |  import org.jeecg.common.aspect.annotation.AutoLog;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | - /**
 | 
	
		
			
				|  |  | +/**
 | 
	
		
			
				|  |  |   * @Description: 预装箱单主表
 | 
	
		
			
				|  |  |   * @Author: jeecg-boot
 | 
	
		
			
				|  |  |   * @Date:   2022-04-20
 | 
	
	
		
			
				|  | @@ -282,7 +282,7 @@ public class SyPreAssembledPackingListController extends JeecgController<SyPreAs
 | 
	
		
			
				|  |  |  		 	//查询IP及账套信息、时间戳
 | 
	
		
			
				|  |  |  			 QueryWrapper<DxpDataPlan> queryWrapper = new QueryWrapper<>();
 | 
	
		
			
				|  |  |  			 //获取推送接口地址
 | 
	
		
			
				|  |  | -			 queryWrapper.eq("code", "senYu_syShipping").or().eq("code","senYu_SH_token");
 | 
	
		
			
				|  |  | +			 queryWrapper.eq("code", "senYu_YCY_local").or().eq("code","senYu_YCY_token");
 | 
	
		
			
				|  |  |  			 queryWrapper.orderBy(true,true,"id");
 | 
	
		
			
				|  |  |  			 Page<DxpDataPlan> page = new Page<DxpDataPlan>(1, 10);
 | 
	
		
			
				|  |  |  			 IPage<DxpDataPlan> pageList = iDxpDataPlanService.page(page, queryWrapper);
 | 
	
	
		
			
				|  | @@ -320,6 +320,7 @@ public class SyPreAssembledPackingListController extends JeecgController<SyPreAs
 | 
	
		
			
				|  |  |  				 System.out.println("推送过去了");
 | 
	
		
			
				|  |  |  			 }else{
 | 
	
		
			
				|  |  |  				 syPreAssembledPackingList.setPushStatus("2");
 | 
	
		
			
				|  |  | +				 System.out.println("失败原因:\t"+message);
 | 
	
		
			
				|  |  |  				 System.out.println("推送失败了");
 | 
	
		
			
				|  |  |  			 }
 | 
	
		
			
				|  |  |  			 syPreAssembledPackingListService.updateById(syPreAssembledPackingList);
 | 
	
	
		
			
				|  | @@ -647,14 +648,10 @@ public class SyPreAssembledPackingListController extends JeecgController<SyPreAs
 | 
	
		
			
				|  |  |  		return dateNo;
 | 
	
		
			
				|  |  |  	 }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -	 @AutoLog(value = "测试")
 | 
	
		
			
				|  |  | -	 @ApiOperation(value="测试", notes="测试")
 | 
	
		
			
				|  |  | -	 @GetMapping(value = "/deletee")
 | 
	
		
			
				|  |  | -	 public int deletee(String id){
 | 
	
		
			
				|  |  | -		 QueryWrapper<SyPreAssembledPackingListItem> queryWrapperCount =new QueryWrapper<>();
 | 
	
		
			
				|  |  | -		 queryWrapperCount.select("sum(total) total");
 | 
	
		
			
				|  |  | -		 queryWrapperCount.eq("del_Flag","0");
 | 
	
		
			
				|  |  | -		 queryWrapperCount.eq("sy_Pre_Assembled_Packing_List_Id",id);
 | 
	
		
			
				|  |  | -		 return syPreAssembledPackingListItemService.getOne(queryWrapperCount).getTotal().intValue();
 | 
	
		
			
				|  |  | -	 }
 | 
	
		
			
				|  |  | +	@AutoLog(value = "getToken")
 | 
	
		
			
				|  |  | +	@ApiOperation(value="getToken", notes="getToken")
 | 
	
		
			
				|  |  | +	@GetMapping(value = "/token")
 | 
	
		
			
				|  |  | +	public String token(){
 | 
	
		
			
				|  |  | +		return "token";
 | 
	
		
			
				|  |  | +	}
 | 
	
		
			
				|  |  |  }
 |