admin
2021-02-06 6c09cbd70388ae53ec593de253f69cfa1a3eeda7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ks.lucky.pojo.DTO;
 
import com.ks.lucky.pojo.DO.BaseUser;
 
public class ActivitySimpleUser extends BaseUser {
 
    private Long activityId;
 
    public ActivitySimpleUser(Long activityId, String uid, Long appId) {
        super(appId, uid);
        this.activityId = activityId;
    }
 
    public Long getActivityId() {
        return activityId;
    }
 
    public void setActivityId(Long activityId) {
        this.activityId = activityId;
    }
}