This commit is contained in:
shuo.wang
2025-04-15 13:59:54 +08:00
parent c835844913
commit e2e1458ec2
2 changed files with 7 additions and 0 deletions

View File

@@ -159,6 +159,9 @@
<if test="record.downstreamSystemPassword != null"> <if test="record.downstreamSystemPassword != null">
downstream_system_password = #{record.downstreamSystemPassword}, downstream_system_password = #{record.downstreamSystemPassword},
</if> </if>
<if test="record.downstreamSystemSecondaryPassword != null">
downstream_system_secondary_password = #{record.downstreamSystemSecondaryPassword},
</if>
<if test="record.updateTime != null"> <if test="record.updateTime != null">
update_time = #{record.updateTime}, update_time = #{record.updateTime},
</if> </if>

View File

@@ -90,6 +90,10 @@ public class SyncDataServiceImpl implements SyncDataService {
AcceptanceInfoDO acceptanceInfoDO = acceptanceInfoDAO.selectByShopId(shopId); AcceptanceInfoDO acceptanceInfoDO = acceptanceInfoDAO.selectByShopId(shopId);
//督导 //督导
String investmentManager = enterpriseUserDAO.getUserName(shopInfo.getInvestmentManager()); String investmentManager = enterpriseUserDAO.getUserName(shopInfo.getInvestmentManager());
QualificationsInfoDO qualificationsInfoDO = qualificationsInfoDAO.getByLineId(lineId);
request.setPartnerIdCardNo(qualificationsInfoDO.getIdCardNo());
if (signFranchiseDO != null) { if (signFranchiseDO != null) {
List<String> partnershipSignatory = new ArrayList<>(); List<String> partnershipSignatory = new ArrayList<>();
partnershipSignatory.add(signFranchiseDO.getPartnershipSignatoryFirst()); partnershipSignatory.add(signFranchiseDO.getPartnershipSignatoryFirst());