| | |
| | | package com.ruoyi.payment.wx.model; |
| | | |
| | | import lombok.Data; |
| | | import lombok.ToString; |
| | | import org.springframework.boot.context.properties.ConfigurationProperties; |
| | | import org.springframework.boot.context.properties.NestedConfigurationProperty; |
| | |
| | | * @return secret ID |
| | | */ |
| | | private String secretId; |
| | | /** |
| | | * 回调地址 |
| | | */ |
| | | private String callBackUrl; |
| | | |
| | | public String getSecretId() { |
| | | return secretId; |
| | |
| | | public void setMchId(String mchId) { |
| | | this.mchId = mchId; |
| | | } |
| | | |
| | | public String getCallBackUrl() { |
| | | return callBackUrl; |
| | | } |
| | | |
| | | public void setCallBackUrl(String callBackUrl) { |
| | | this.callBackUrl = callBackUrl; |
| | | } |
| | | } |