jinpengyong
2023-11-08 72a6d5a954312a8a53e5bdd18c5f8f8b57b54dbc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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;
}