doum
2026-06-16 77094dd01f0c6ff59b4fb4fa1105addf34b2398c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.doumee.service.business;
 
import com.doumee.core.model.LoginUserInfo;
import com.doumee.dao.business.dto.h5.CustomerPayCreateDTO;
import com.doumee.dao.business.model.YwWxPayOrder;
 
import java.util.Map;
 
public interface YwCustomerWxPayService {
 
    Map<String, String> createOrder(CustomerPayCreateDTO dto, LoginUserInfo user, String clientIp);
 
    YwWxPayOrder queryOrder(String orderNo, Integer customerId);
 
    String handleNotify(String xmlBody);
}