package com.ruoyi.order.util.payment.wechat;
|
|
/**
|
* @author zhibing.pu
|
* @Date 2025/1/3 14:26
|
*/
|
public interface WechatProperty {
|
|
/** 商户号 */
|
String merchantId = "1703304170";
|
|
/** 商户API私钥路径 */
|
String privateKeyPath = "/Users/yourname/your/path/apiclient_key.pem";
|
|
/** 商户证书序列号 */
|
String merchantSerialNumber = "42779097B2477E9996D3B2A4F237F663FD33B9DB";
|
|
/** 商户APIV2密钥 */
|
String apiV2Key = "YGdzX23JseBf45JPfQtXNQSBHjSaJwrc";
|
|
/** 商户APIV3密钥 */
|
String apiV3Key = "yaNFEA3mA5FPGr9DDWM4dP3F0RpkF0yt";
|
/**
|
* appid
|
*/
|
String appid = "";
|
|
|
}
|