@@ -60,6 +60,7 @@ public class ParentSignConfigManagerImpl extends AbstractManager implements Pare | |||
//更新子表商户号 | |||
commonWxSignConfigRepo.updeteMchId(reqDto.getMchId(),reqDto.getId()); | |||
} | |||
paSignConfig.setPayChannelType(reqDto.getPayChannelType()); | |||
paSignConfig.setUpdateTime(LocalDateTime.now()); | |||
commonPASignConfigRepo.merge(paSignConfig); | |||
} |
@@ -62,6 +62,7 @@ public class WxSignChannelConfigManagerImpl extends AbstractManager implements W | |||
CommonWxSignConfig config = copyProperties(reqDto, new CommonWxSignConfig()); | |||
config.setInfo(commonPASignConfig.getInfo()); | |||
config.setPayChannelType(commonPASignConfig.getPayChannelType()); | |||
config.setMchId(commonPASignConfig.getMchId()); | |||
commonWxSignConfigRepo.persist(config); | |||
} | |||