|
@@ -448,6 +448,13 @@ public class CompanyServiceImpl implements CompanyService {
|
|
companyVo.setCompanyEmail(pcFirm.getEmail());
|
|
companyVo.setCompanyEmail(pcFirm.getEmail());
|
|
companyVo.setCompanyAddress(pcFirm.getLatestAddress());
|
|
companyVo.setCompanyAddress(pcFirm.getLatestAddress());
|
|
companyVo.setBusinScope(pcFirm.getBusinessScope());
|
|
companyVo.setBusinScope(pcFirm.getBusinessScope());
|
|
|
|
+ if (pcFirm.getEstablishmentDate() != null) {
|
|
|
|
+ SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
|
|
|
|
+ try {
|
|
|
|
+ companyVo.setEstablishmentTime(dateFormat.parse(pcFirm.getEstablishmentDate()));
|
|
|
|
+ } catch (Exception e) {
|
|
|
|
+ }
|
|
|
|
+ }
|
|
if (pcFirm.getIndustry() != null && !pcFirm.getIndustry().isBlank()) {
|
|
if (pcFirm.getIndustry() != null && !pcFirm.getIndustry().isBlank()) {
|
|
// 获取行业数据
|
|
// 获取行业数据
|
|
List<PcIndustry> allList = industryService.getAllList();
|
|
List<PcIndustry> allList = industryService.getAllList();
|