|
@@ -316,12 +316,12 @@ public class PlanManageController {
|
|
|
if(plan.getPlanUserId() != null){
|
|
|
idList.add(Long.parseLong(plan.getPlanUserId()));
|
|
|
}
|
|
|
- if(plan.getCreateBy() != null){
|
|
|
- idList.add(Long.parseLong(plan.getCreateBy()));
|
|
|
- }
|
|
|
- if(plan.getUpdateBy() != null){
|
|
|
- idList.add(Long.parseLong(plan.getUpdateBy()));
|
|
|
- }
|
|
|
+// if(plan.getCreateBy() != null){
|
|
|
+// idList.add(Long.parseLong(plan.getCreateBy()));
|
|
|
+// }
|
|
|
+// if(plan.getUpdateBy() != null){
|
|
|
+// idList.add(Long.parseLong(plan.getUpdateBy()));
|
|
|
+// }
|
|
|
}
|
|
|
Long [] ids = new Long[idList.size()];
|
|
|
for( int i =0 ;i<idList.size(); i++){
|
|
@@ -341,16 +341,16 @@ public class PlanManageController {
|
|
|
plan.setPlanUserName(userEntity.getUsername());
|
|
|
}
|
|
|
}
|
|
|
- if(plan.getCreateBy() != null){
|
|
|
- if(userEntity.getId()== Long.parseLong(plan.getCreateBy())){
|
|
|
- plan.setCreateByName(userEntity.getUsername());
|
|
|
- }
|
|
|
- }
|
|
|
- if(plan.getUpdateBy() != null) {
|
|
|
- if(userEntity.getId()== Long.parseLong(plan.getUpdateBy())){
|
|
|
- plan.setUpdateByName(userEntity.getUsername());
|
|
|
- }
|
|
|
- }
|
|
|
+// if(plan.getCreateBy() != null){
|
|
|
+// if(userEntity.getId()== Long.parseLong(plan.getCreateBy())){
|
|
|
+// plan.setCreateByName(userEntity.getUsername());
|
|
|
+// }
|
|
|
+// }
|
|
|
+// if(plan.getUpdateBy() != null) {
|
|
|
+// if(userEntity.getId()== Long.parseLong(plan.getUpdateBy())){
|
|
|
+// plan.setUpdateByName(userEntity.getUsername());
|
|
|
+// }
|
|
|
+// }
|
|
|
}
|
|
|
}
|
|
|
}
|