44323
2023-12-12 312cd22230809437aae8462d71d3335e6540f78a
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
28
29
30
31
32
33
34
35
36
37
38
39
package com.dsh.course.model;
 
import lombok.Data;
 
/**
 * @author zhibing.pu
 * @Date 2023/8/12 3:12
 */
@Data
public class QueryCoursePackageStudent {
    /**
     * 用户id
     */
    private Integer appUserId;
    /**
     * 学员id
     */
    private Integer studentId;
    /**
     * 课包id
     */
    private Integer coursePackageId;
    /**
     * 课包购买记录id
     */
    private Long coursePackagePaymentId;
    /**
     * 排课记录id
     */
    private Long coursePackageSchedulingId;
    /**
     * 到课状态(0=否,1=是)
     */
    private Integer signInOrNot;
    /**
     * 预约状态(0=取消,1=预约)
     */
    private Integer reservationStatus;
}