新增 对接联联平台接口

This commit is contained in:
Lemon
2023-04-08 14:20:19 +08:00
parent a3a82c1648
commit c73ca96ee2
21 changed files with 166 additions and 24 deletions

View File

@@ -1,5 +1,10 @@
package com.jsowell.thirdparty.service;
import com.jsowell.thirdparty.domain.StationInfo;
import com.jsowell.thirdparty.dto.QueryStationInfoDTO;
import java.util.List;
public interface LianLianService {
/**
@@ -7,4 +12,6 @@ public interface LianLianService {
* @param merchantId
*/
void pushMerchantInfo(Long merchantId);
List<StationInfo> query_stations_info(QueryStationInfoDTO dto);
}