1
2
3
4
5
6
7
8
9
10
11
12
| package com.ks.lucky.query;
|
| import java.util.List;
|
| public class ActivityJoinRecordQuery extends BaseDaoQuery {
| public Long activityId;
| public Long appId;
| public String uid;
| //中奖状态
| public List<Integer> drawStateList;
| public Integer userType;
| }
|
|