36 lines
756 B
Java
36 lines
756 B
Java
|
|
package com.xinelu.common.config;
|
||
|
|
|
||
|
|
import lombok.Data;
|
||
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||
|
|
import org.springframework.stereotype.Component;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @Description 微信支付接口地址
|
||
|
|
* @Author 纪寒
|
||
|
|
* @Date 2022-10-17 17:56:25
|
||
|
|
* @Version 1.0
|
||
|
|
*/
|
||
|
|
@Component
|
||
|
|
@Data
|
||
|
|
@ConfigurationProperties(prefix = "we-chat-payment-url-config")
|
||
|
|
public class WeChatPaymentUrlConfig {
|
||
|
|
|
||
|
|
private String jsapiPalceOrderUrl;
|
||
|
|
|
||
|
|
private String queryOrderNoUrl;
|
||
|
|
|
||
|
|
private String queryMchIdUrl;
|
||
|
|
|
||
|
|
private String closeOrderUrl;
|
||
|
|
|
||
|
|
private String refundApplyUrl;
|
||
|
|
|
||
|
|
private String refundQueryOrderUrl;
|
||
|
|
|
||
|
|
private String tradeApplyBillUrl;
|
||
|
|
|
||
|
|
private String capitalApplyBillUrl;
|
||
|
|
|
||
|
|
private String appPlaceOrderUrl;
|
||
|
|
}
|