goupan
2024-04-03 5506e9a45e717ffcb67ec313b5a4e8206d9b3a39
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
44
package cn.stylefeng.guns.modular.business.dto.request;
 
import cn.stylefeng.roses.kernel.rule.pojo.request.BaseRequest;
import cn.stylefeng.roses.kernel.validator.api.validators.date.DateValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
 
@ApiModel("课程订单请求")
@Data
public class CourseOrderRequest  extends BaseRequest {
 
 
    @ApiModelProperty("课程名称")
    private String courseName;
 
    @ApiModelProperty("用户姓名")
    private String userName;
 
    @ApiModelProperty("课程顾问名称")
    private String courseUserName;
 
    @ApiModelProperty("课程辅导名称")
    private String tutoringUserName;
 
    @ApiModelProperty("咨询电话")
    private String phone;
 
 
    @ApiModelProperty(value = "状态app端使用:0待支付,1已支付,2已过期,9取消,10退款")
    private Integer statusFlag;
 
    @ApiModelProperty("展示状态用于后台系统展示和查询:0待支付,1已完成,3已支付,9取消,10退款")
    private Integer showState;
 
    @ApiModelProperty(value = "用户id")
    private Long userId;
 
    @ApiModelProperty(value = "查询我的课程使用,传多个需要的状态值 使用,隔开 末尾不要,号")
    private String statuFlags;
}