lisy
2023-06-30 add48c8930d02d58046e89e78b0530c2d5fce32d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.dsh.account.model.vo.sourceDetail;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class RecordTimeRequest {
 
    @ApiModelProperty(value = "学员id", dataType = "int", required = true)
    private Integer stuId;
 
    @ApiModelProperty(value = "课包id", dataType = "int")
    private Integer lessonId;
 
    @ApiModelProperty(value = "开始时间 格式:yyyy-MM", dataType = "string")
    private String startTime;
 
    @ApiModelProperty(value = "结束时间 格式:yyyy-MM", dataType = "string")
    private String endTime;
 
    @ApiModelProperty(value = "类型:1购买课包 2消费扣除 3报名赛事 4介绍有礼 5全部", dataType = "int")
    private Integer type;
}