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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
| package com.stylefeng.guns.modular.account.util;
|
| import com.fasterxml.jackson.annotation.JsonProperty;
| import lombok.Data;
| import lombok.ToString;
| import org.springframework.boot.context.properties.ConfigurationProperties;
| import org.springframework.stereotype.Component;
|
| import java.io.Serializable;
|
| @ToString
| @Data
| @Component
| @ConfigurationProperties(prefix = "qrcode")
| public class QrCodeConfiguration implements Serializable {
|
| /**
| * 获取 App ID
| *
| * @return App ID
| */
| @JsonProperty("appId")
| private String appId;
|
| /**
| * 获取 App KEY
| *
| * @return App KEY
| */
| @JsonProperty("appKey")
| private String appKey;
|
| /**
| * 获取 App md5key
| *
| * @return App md5key
| */
| @JsonProperty("md5key")
| private String md5key;
|
| /**
| * 获取 App msgSrcId
| *
| * @return App msgSrcId
| */
| @JsonProperty("msgSrcId")
| private String msgSrcId;
|
| /**
| * 获取 mid
| *
| * @return mid
| */
| @JsonProperty("mid")
| private String mid;
|
| /**
| * 获取 tid
| *
| * @return tid
| */
| @JsonProperty("tid")
| private String tid;
|
| /**
| * 获取 instMid
| *
| * @return instMid
| */
| @JsonProperty("instMid")
| private String instMid;
|
| }
|
|