28 lines
617 B
Java
28 lines
617 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 16:55:04
|
|
* @Version 1.0
|
|
*/
|
|
@Data
|
|
@Component
|
|
@ConfigurationProperties(prefix = "ylyp-we-chat-config")
|
|
public class YlypWeChatPaymentConfig {
|
|
|
|
private String ylypMchId;
|
|
|
|
private String ylypMchSerialNo;
|
|
|
|
private String ylypPrivateKeyPath;
|
|
|
|
private String ylypPaymentKey;
|
|
|
|
private String ylypWeChatNotifyUrl;
|
|
}
|