소스 검색

feat: 图片展示路径调整

chenjianhua 1 개월 전
부모
커밋
07502a221b
1개의 변경된 파일0개의 추가작업 그리고 11개의 파일을 삭제
  1. 0 11
      service-manage/src/main/java/com/simuwang/manage/service/impl/CompanyContactServiceImpl.java

+ 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;
     }