|
@@ -316,9 +316,9 @@ 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.getCreateBy() != null){
|
|
|
+ idList.add(Long.parseLong(plan.getCreateBy()));
|
|
|
+ }
|
|
|
// if(plan.getUpdateBy() != null){
|
|
|
// idList.add(Long.parseLong(plan.getUpdateBy()));
|
|
|
// }
|
|
@@ -341,11 +341,11 @@ public class PlanManageController {
|
|
|
plan.setPlanUserName(userEntity.getUsername());
|
|
|
}
|
|
|
}
|
|
|
-// if(plan.getCreateBy() != null){
|
|
|
-// if(userEntity.getId()== Long.parseLong(plan.getCreateBy())){
|
|
|
-// plan.setCreateByName(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());
|