sgj
3 天以前 241d327e57cbfe504aa806c61aa22e6205706098
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
package com.fzzy.igds.data;
 
import lombok.Data;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
 
 
/**
 * 系统配置文件中的参数
 *
 * @author sgj
 * @since 2026/04/10
 */
@Component
@Data
public class ConfigData {
 
 
    @Value("${framework.weChat.wxServeUrl}")
    private String wxServeUrl;
 
    @Value("${framework.weChat.wxAppId}")
    private String wxAppId;
 
    @Value("${framework.weChat.wxSecret}")
    private String wxSecret;
 
    /**
     * 公众号消息模板id---告警模板
     */
    @Value("${framework.weChat.template-id}")
    private String wxTempId;
}