zxl
2025-10-01 34cd76ac611c3422b3ab467c5b29d8476f266032
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;
 
}