|  | @@ -352,7 +352,7 @@ public class AppPlanServiceImpl extends ServiceImpl<AppPlanMapper, AppPlan> impl
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      private AppPlan convertToAppPlan(AppPlanVo app) {
 | 
	
		
			
				|  |  | -        LoginUser loginUser = SecurityUtils.getLoginUser();
 | 
	
		
			
				|  |  | +//        LoginUser loginUser = SecurityUtils.getLoginUser();
 | 
	
		
			
				|  |  |          AppPlan plan = new AppPlan();
 | 
	
		
			
				|  |  |          plan.setCheckType(app.getExecType());
 | 
	
		
			
				|  |  |          plan.setCheckOrgType(app.getOrgType());
 | 
	
	
		
			
				|  | @@ -361,8 +361,8 @@ public class AppPlanServiceImpl extends ServiceImpl<AppPlanMapper, AppPlan> impl
 | 
	
		
			
				|  |  |              plan.setCreateTime(time);
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |          plan.setUpdateTime(time);
 | 
	
		
			
				|  |  | -        plan.setModifiedName(loginUser.getUsername());
 | 
	
		
			
				|  |  | -        plan.setModifiedBy(loginUser.getUserid());
 | 
	
		
			
				|  |  | +        plan.setModifiedName(SecurityUtils.getUsername());
 | 
	
		
			
				|  |  | +        plan.setModifiedBy(SecurityUtils.getUserId());
 | 
	
		
			
				|  |  |          plan.setExecOrgType(app.getOrgType());
 | 
	
		
			
				|  |  |          plan.setExecType(app.getExecType());
 | 
	
		
			
				|  |  |  
 |