admin
2022-05-07 15bedcc619b1edb6eb987f9288db7670e5b38c46
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package test;
 
import org.yeshi.utils.wx.WXPayUtil;
 
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.math.BigDecimal;
 
/**
 * @author hxh
 * @title: ExtractTest
 * @description: TODO
 * @date 2022/4/1 10:51
 */
public class ExtractTest {
 
 
    public static void main(String[] args) throws FileNotFoundException {
        WXPayUtil.payToOpenId("wx428de66710fac55b", "odx5JwzVHBcEan-TtlGNKPzNuTlI", "1520950211", "XYJkJ2018FAfaodCCx899mLl138rfGVd", "1520950211", new FileInputStream(new File("D:\\项目\\返利券\\商户平台\\1520950211_20220401_cert\\apiclient_cert.p12")), "buwanwithdraw1", new BigDecimal(1.00), "提现", "192.168.3.122");
    }
 
 
}