1
lige
2024-02-02 3845de0796e77f8182ef5748caa349d048255f3d
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
28
29
30
31
32
33
34
35
36
37
38
package com.ltkj.web.config.wordUtil;
 
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
 
/**
 * <p> MyProperties </p>
 *
 * @author : zhengqing
 * @description :
 * @date : 2019/8/19 9:07
 */
@Data
@ConfigurationProperties(prefix = "zjh", ignoreUnknownFields = false)
public class MyProperties {
 
    /**
     * SWAGGER参数
     */
    private final Swagger swagger = new Swagger();
 
    /**
     * SWAGGER接口文档参数
     */
    @Data
    public static class Swagger {
        private String title;
        private String description;
        private String version;
        private String termsOfServiceUrl;
        private String contactName;
        private String contactUrl;
        private String contactEmail;
        private String license;
        private String licenseUrl;
    }
 
}