1.修改微信抓取添加下架时间

2.修改企业保存联系人
This commit is contained in:
sh
2026-02-24 18:07:05 +08:00
parent d7541941e2
commit 368a62ae48
2 changed files with 5 additions and 0 deletions

View File

@@ -151,6 +151,8 @@ public class CompanyServiceImpl extends ServiceImpl<CompanyMapper, Company> impl
company.getCompanyContactList().forEach(x -> {
CompanyContact companyContact = new CompanyContact();
companyContact.setCompanyId(company.getCompanyId());
companyContact.setContactPerson(x.getContactPerson());
companyContact.setContactPersonPhone(x.getContactPersonPhone());
companyContactMapper.insert(companyContact);
});
}