| package com.moral.api.config.properties; | 
|   | 
| import lombok.Data; | 
| import org.springframework.boot.context.properties.ConfigurationProperties; | 
| import org.springframework.stereotype.Component; | 
|   | 
| /** | 
|  * @ClassName | 
|  * @Description TODO | 
|  * @Author 陈凯裕 | 
|  * @Date 2022/3/11 15:04 | 
|  * @Version TODO | 
|  **/ | 
| @Data | 
| @Component | 
| @ConfigurationProperties(prefix = "bulletin") | 
| public class BulletinProperties { | 
|     private String title; | 
|   | 
|     private String paragraphOne; | 
|   | 
|     private String paragraphTwo; | 
|   | 
|     private String paragraphThree; | 
|   | 
|     private String paragraphFour; | 
| } |