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; }