|
@@ -13,6 +13,7 @@ import lombok.NoArgsConstructor;
|
|
|
@AllArgsConstructor
|
|
@AllArgsConstructor
|
|
|
@NoArgsConstructor
|
|
@NoArgsConstructor
|
|
|
public class WxPayConfigModel {
|
|
public class WxPayConfigModel {
|
|
|
|
|
+
|
|
|
@Schema(description = "项目id")
|
|
@Schema(description = "项目id")
|
|
|
private String projectOid;
|
|
private String projectOid;
|
|
|
|
|
|
|
@@ -40,6 +41,9 @@ public class WxPayConfigModel {
|
|
|
@Schema(description = "私钥地址")
|
|
@Schema(description = "私钥地址")
|
|
|
private String privateKeyPath;
|
|
private String privateKeyPath;
|
|
|
|
|
|
|
|
|
|
+ @Schema(description = "证书字符串")
|
|
|
|
|
+ private String privateKeyStr;
|
|
|
|
|
+
|
|
|
@Schema(description = "支付成功回调地址")
|
|
@Schema(description = "支付成功回调地址")
|
|
|
private String notifyUrl;
|
|
private String notifyUrl;
|
|
|
|
|
|