peng
4 天以前 09310a5a6da2ffccc17f460244fb9a09ec3ff68b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package cn.lili.modules.lmk.domain.query;
 
import cn.lili.base.AbsQuery;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
@Data
@ApiModel(value = "活动报名人员查询参数", description = "活动报名人员查询参数")
public class ActivityMembersQuery extends AbsQuery {
 
    /** 活动id*/
    private String id;
 
}