This commit is contained in:
2023-03-04 16:29:55 +08:00
commit 397ba75479
1007 changed files with 109050 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package com.jsowell.thirdparty.service;
public interface LianLianService {
/**
* 根据运营商id推送运营商信息
* @param merchantId
*/
void pushMerchantInfo(Long merchantId);
}

View File

@@ -0,0 +1,25 @@
package com.jsowell.thirdparty.service.impl;
import com.jsowell.pile.service.IPileMerchantInfoService;
import com.jsowell.thirdparty.service.LianLianService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class LianLianServiceImpl implements LianLianService {
@Autowired
private IPileMerchantInfoService pileMerchantInfoService;
@Override
public void pushMerchantInfo(Long merchantId) {
// 通过id查询运营商信息
// 组装联联平台所需要的数据格式
// 调用联联平台接口
}
}