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
| package com.ks.daylucky.pojo.VO;
|
| import com.google.gson.annotations.Expose;
|
| public class AssistFriendVO {
| private SimpleUser user;
| private int count;
|
| public AssistFriendVO(SimpleUser user, int count) {
| this.user = user;
| this.count = count;
| }
|
| public SimpleUser getUser() {
| return user;
| }
|
| public void setUser(SimpleUser user) {
| this.user = user;
| }
|
| public int getCount() {
| return count;
| }
|
| public void setCount(int count) {
| this.count = count;
| }
| }
|
|