|
@@ -13,7 +13,9 @@ public class EnterpriseRecruitTagConvertVo {
|
|
|
public static List<EnterpriseRecruitTag> appFlameJobRespVOConvert(AppFlameJobRespVO item){
|
|
|
List<EnterpriseRecruitTag> enterpriseRecruitTags = new ArrayList<>();
|
|
|
|
|
|
-
|
|
|
+ if(null==item.getJob() || null==item.getJob().getTagList()){
|
|
|
+ return enterpriseRecruitTags;
|
|
|
+ }
|
|
|
for (String tag : item.getJob().getTagList()) {
|
|
|
EnterpriseRecruitTag enterpriseRecruitTag =new EnterpriseRecruitTag();
|
|
|
enterpriseRecruitTag.setTitle(tag);
|