admin
2020-12-05 8ac93bd9b45e3d25783798e1fe8cfc26bedd57d2
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;
    }
}