| package cc.mrbird.febs.pay.properties; | 
|   | 
| import lombok.Data; | 
| import org.springframework.boot.context.properties.ConfigurationProperties; | 
| import org.springframework.context.annotation.Configuration; | 
|   | 
| /** | 
|  * @author wzy | 
|  * @date 2021-09-27 | 
|  **/ | 
|   | 
| @Data | 
| @Configuration | 
| @ConfigurationProperties(prefix = "pay.ali") | 
| public class AliPayProperties { | 
|   | 
|     private String appId; | 
|   | 
|     private String publicKey; | 
|   | 
|     private String privateKey; | 
|   | 
|     private String noticeUrl; | 
|   | 
|     private String domain; | 
| } |