liujie
2023-10-26 e030255c23c7ba3e2cbad1036a810d6d72fa864f
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
40
41
42
43
package com.dsh.course.feignclient.model;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
@Data
public class RecordAppoint {
 
    @ApiModelProperty(value = "课包id")
    private Integer coursePackageId;
 
    @ApiModelProperty(value = "上课记录id")
    private Long courseStuRecordId;
 
    @ApiModelProperty(value = "课包名称")
    private String coursePackageName;
 
    @ApiModelProperty(value = "课时数")
    private Integer courseHours;
 
    @ApiModelProperty(value = "上课时间范围(例如:2021.03.01 8:00-11:00)")
    private String timeFrame;
 
    @ApiModelProperty(value = "门店名称+地址")
    private String storeNameAddr;
 
    @ApiModelProperty(value = "课状态(1待上课 2已开始 3已完成 4已取消 5已请假 6旷课)")
    private Integer status;
 
    private Integer userId;
 
    private Integer siteId;
 
    private List<Integer> ids;
 
 
    private List<Integer> sid;
 
    private List<Integer> rid;
 
}