|
|
@@ -18,6 +18,7 @@ import com.jpsoft.employment.modules.job.dto.ExpJsonDTO;
|
|
|
import com.jpsoft.employment.modules.job.dto.WorkExpDTO;
|
|
|
import com.jpsoft.employment.modules.job.entity.*;
|
|
|
import com.jpsoft.employment.modules.job.service.*;
|
|
|
+import com.jpsoft.employment.modules.sys.entity.DataDictionary;
|
|
|
import com.jpsoft.employment.modules.sys.service.DataDictionaryService;
|
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
@@ -319,6 +320,9 @@ public class ResumeApiController {
|
|
|
if(ci != null){
|
|
|
recruitment.setCompanyName(ci.getName());
|
|
|
recruitment.setCompanyLogo(ci.getLogo());
|
|
|
+ recruitment.setCompanyScale(ci.getScale());
|
|
|
+ String scaleN = dataDictionaryService.getName(ci.getScale());
|
|
|
+ recruitment.setCompanyScaleN(scaleN);
|
|
|
}
|
|
|
City city = cityService.get(recruitment.getArea());
|
|
|
if(city != null){
|