admin
2020-06-08 47f157086a556d96e7bcfc9adfe17ecf7c154dfe
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
package com.yeshi.fanli.dto.aitaoker;
 
import com.google.gson.annotations.SerializedName;
 
public class WeiXinGroupDTO {
    // 群id
    @SerializedName("userName")
    private String groupId;
 
    // 群昵称
    @SerializedName("nickName")
    private String groupName;
 
    // 群头像
    @SerializedName("smallHead")
    private String groupHead;
 
    public String getGroupId() {
        return groupId;
    }
 
    public void setGroupId(String groupId) {
        this.groupId = groupId;
    }
 
    public String getGroupName() {
        return groupName;
    }
 
    public void setGroupName(String groupName) {
        this.groupName = groupName;
    }
 
    public String getGroupHead() {
        return groupHead;
    }
 
    public void setGroupHead(String groupHead) {
        this.groupHead = groupHead;
    }
 
}