rentaiming
2024-05-21 dd7ad1ab0ead2aa3c9f7fc35cc9b0635309c642a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*package com.ruoyi.order.util.tencent.service;
 
import com.tencent.common.Configure;
import com.tencent.protocol.PayToTheUserReqData;
 
 
public class PayToTheUserService extends BaseService{
 
    public PayToTheUserService(Integer apptype) throws IllegalAccessException, InstantiationException, ClassNotFoundException {
        super(apptype,Configure.PayToTheUser_API);
    }
 
    *//**
     * 请求商户向用户支付
     * @param refundReqData 这个数据对象里面包含了API要求提交的各种数据字段
     * @return API返回的XML数据
     * @throws Exception
     *//*
    public String request(PayToTheUserReqData payToTheUserReqData) throws Exception {
 
        //--------------------------------------------------------------------
        //发送HTTPS的Post请求到API地址
        //--------------------------------------------------------------------
        String responseString = sendPost(payToTheUserReqData);
 
        return responseString;
    }
 
}
*/