| 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
 | | package com.fzzy.push.gd2023.dto; |  |   |  | import lombok.Data; |  |   |  | /** |  |  * 接口权限验证信息 |  |  */ |  | @Data |  | public class GD2023AuthToken { |  |   |  |     private String appid; |  |   |  |     private String access_token; |  |   |  |     private String dwdm; |  |   |  |     private String dwmc; |  |   |  |     public GD2023AuthToken() { |  |         super(); |  |     } |  |   |  |     public GD2023AuthToken(String appid, String access_token, String dwdm) { |  |         this.appid = appid; |  |         this.access_token = access_token; |  |         this.dwdm = dwdm; |  |     } |  |     public GD2023AuthToken(String appid, String access_token) { |  |         this.appid = appid; |  |         this.access_token = access_token; |  |     } |  | } | 
 |