15 lines
359 B
Java
15 lines
359 B
Java
|
|
package com.guahao.api.walkinto.service;
|
||
|
|
|
||
|
|
import com.guahao.api.walkinto.model.JhClientInfo;
|
||
|
|
import com.guahao.api.walkinto.model.JhPlaceOrderInfo;
|
||
|
|
|
||
|
|
import java.util.Map;
|
||
|
|
|
||
|
|
public interface IJhPayService {
|
||
|
|
/**
|
||
|
|
* 建行统一下单
|
||
|
|
// * @param jhPlaceOrderInfo
|
||
|
|
*/
|
||
|
|
public Map<String,Object> unifiedPlaceOrder(JhClientInfo jhClientInfo);
|
||
|
|
}
|