| 对比新文件 |
| | |
| | | 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; |
| | | |
| | | /** |
| | | * 鍏紬鍙锋秷鎭ā鏉縤d---鍛婅妯℃澘 |
| | | */ |
| | | @Value("${framework.weChat.template-id}") |
| | | private String wxTempId; |
| | | } |