nickchange
2023-11-24 18b58aaf9bd99cadd0e7f80fe5d80586f2f4831a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.dsh.course.model;
 
import lombok.Data;
 
import java.util.List;
 
/**
 * 消课记录列表查询Query
 */
@Data
public class CancelClassesQuery {
    // 学员姓名
    private String studentName;
    // 上课老师姓名
    private String coachName;
    // 课程名称
    private String courseName;
    // 消课时间
    private String time;
    // 教练ids
    private List<Integer> coachIds;
    // 学员ids
    private List<Integer> studentIds;
 
    private Integer storeId;
    private List<Integer> storeIds;
}