|
@@ -110,6 +110,7 @@ public class EnterpriseService {
|
|
|
if (dto.getBusinessContracts() != null) e.setBusinessContracts(dto.getBusinessContracts());
|
|
if (dto.getBusinessContracts() != null) e.setBusinessContracts(dto.getBusinessContracts());
|
|
|
if (dto.getLegalRepIdPhoto() != null) e.setLegalRepIdPhoto(dto.getLegalRepIdPhoto());
|
|
if (dto.getLegalRepIdPhoto() != null) e.setLegalRepIdPhoto(dto.getLegalRepIdPhoto());
|
|
|
if (dto.getWanlihuiUid() != null) e.setWanlihuiUid(dto.getWanlihuiUid());
|
|
if (dto.getWanlihuiUid() != null) e.setWanlihuiUid(dto.getWanlihuiUid());
|
|
|
|
|
+ if (dto.getTransferEnabled() != null) e.setTransferEnabled(dto.getTransferEnabled());
|
|
|
enterpriseMapper.updateById(e);
|
|
enterpriseMapper.updateById(e);
|
|
|
|
|
|
|
|
// 对应 Python: 当状态为已激活或认证时,从支付宝同步企业信息
|
|
// 对应 Python: 当状态为已激活或认证时,从支付宝同步企业信息
|
|
@@ -145,6 +146,7 @@ public class EnterpriseService {
|
|
|
vo.setBusinessContracts(e.getBusinessContracts());
|
|
vo.setBusinessContracts(e.getBusinessContracts());
|
|
|
vo.setLegalRepIdPhoto(e.getLegalRepIdPhoto());
|
|
vo.setLegalRepIdPhoto(e.getLegalRepIdPhoto());
|
|
|
vo.setWanlihuiUid(e.getWanlihuiUid());
|
|
vo.setWanlihuiUid(e.getWanlihuiUid());
|
|
|
|
|
+ vo.setTransferEnabled(e.getTransferEnabled());
|
|
|
return vo;
|
|
return vo;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -179,6 +181,7 @@ public class EnterpriseService {
|
|
|
vo.setBusinessContracts(e.getBusinessContracts());
|
|
vo.setBusinessContracts(e.getBusinessContracts());
|
|
|
vo.setLegalRepIdPhoto(e.getLegalRepIdPhoto());
|
|
vo.setLegalRepIdPhoto(e.getLegalRepIdPhoto());
|
|
|
vo.setWanlihuiUid(e.getWanlihuiUid());
|
|
vo.setWanlihuiUid(e.getWanlihuiUid());
|
|
|
|
|
+ vo.setTransferEnabled(e.getTransferEnabled());
|
|
|
return vo;
|
|
return vo;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|