yujian
2020-06-29 ec60e757d358636dcac1589c44a66f3e276fe58c
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
package com.yeshi.fanli.dto.aitaoker;
 
import com.google.gson.annotations.SerializedName;
 
public class WeiXinGroupDTO {
    // 群id
    @SerializedName("chatRoomId")
    private String groupId;
 
    // 群昵称
    @SerializedName("nickName")
    private String groupName;
 
 
    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;
    }
 
}