| 1234567891011121314151617181920212223242526 |
- package com.ydtech.config.properties;
- import lombok.Data;
- import org.springframework.boot.context.properties.ConfigurationProperties;
- import org.springframework.stereotype.Component;
- /**
- * @version
- * @description: 企业微信客服接口
- * @author: wenks
- * @date: 2024/11/26 10:22
- **/
- @Data
- @Component
- @ConfigurationProperties(prefix = "wechat.customer")
- public class WechatCustomerProperties {
- private String corpId;
- private String secret;
- private String token;
- private String encodingAesKey;
- }
|