xiangpei
8 天以前 56224037cde5a381dbdce941bfc3a4f555584e3b
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;
 
}