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;
|
}
|