Explorar o código

feat: 图片展示路径调整

chenjianhua hai 1 mes
pai
achega
07502a221b

+ 0 - 11
service-manage/src/main/java/com/simuwang/manage/service/impl/CompanyContactServiceImpl.java

@@ -90,17 +90,6 @@ public class CompanyContactServiceImpl implements CompanyContactService {
                 lastCompanyContactInfoMapper.updateById(lastCompanyContactInfoDO);
             }
         }
-        //保存联系人修改
-        Integer contactId = companyContactInfoDO.getContactId();
-        ContactInformationDO contactInformationDO = new ContactInformationDO();
-        contactInformationDO.setId(contactId);
-        contactInformationDO.setUpdaterId(UserUtils.getLoginUser().getUserId());
-        contactInformationDO.setUpdateTime(new Date());
-        contactInformationDO.setContactEmail(companyContactInfoVO.getContactEmail());
-        contactInformationDO.setContactPhone(companyContactInfoVO.getContactPhone());
-        contactInformationDO.setContactPosition(companyContactInfoVO.getContactPosition());
-        contactInformationDO.setContactWechat(companyContactInfoVO.getContactWechat());
-        contactInformationMapper.updateById(contactInformationDO);
         vo.setData(true);
         return vo;
     }