|
@@ -1976,7 +1976,7 @@ public class UserServiceImpl extends ServiceImpl<UserMapper, User> implements IU
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
- item.setApplyStatusStr(item.getApplyStatus() == 1 ? "通过":"不通过");
|
|
|
|
|
|
|
+ item.setApplyStatusStr(ObjectUtils.isNotNull(item.getApplyStatus()) && item.getApplyStatus() == 1 ? "通过":"不通过");
|
|
|
if (ObjectUtils.isNotNull(item.getPerformance())){
|
|
if (ObjectUtils.isNotNull(item.getPerformance())){
|
|
|
item.setPerformanceStr(String.format("%s分",item.getPerformance()));
|
|
item.setPerformanceStr(String.format("%s分",item.getPerformance()));
|
|
|
}
|
|
}
|