admin
2022-04-21 2464548977f4720bc8fceeb5d999c1a3852c2d10
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
package com.yeshi.makemoney.app.vo.team;
 
import com.yeshi.makemoney.app.vo.user.UserInfoVO;
 
/**
 * @author hxh
 * @title: TeamListVO
 * @description: 队员列表
 * @date 2022/4/20 15:13
 */
public class TeamMemberListVO {
 
    private UserInfoVO user;
    private String tag;
    private String joinTime;
    private Integer todayGoldCorn;
 
    public UserInfoVO getUser() {
        return user;
    }
 
    public void setUser(UserInfoVO user) {
        this.user = user;
    }
 
    public String getTag() {
        return tag;
    }
 
    public void setTag(String tag) {
        this.tag = tag;
    }
 
    public String getJoinTime() {
        return joinTime;
    }
 
    public void setJoinTime(String joinTime) {
        this.joinTime = joinTime;
    }
 
    public Integer getTodayGoldCorn() {
        return todayGoldCorn;
    }
 
    public void setTodayGoldCorn(Integer todayGoldCorn) {
        this.todayGoldCorn = todayGoldCorn;
    }
}