guohongjin
2024-05-15 5b7639f0bd9e056738ec15100ed0532e965c6cd5
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
package cn.stylefeng.guns.modular.business.dto.request;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
@ApiModel("咨询预约")
@Data
public class CounsellingReservationRequest implements Serializable {
 
    @ApiModelProperty("预约时间日期 yyyy-MM-dd")
    private String dayTime;
 
    @ApiModelProperty("预约时间点 HH:mm-HH:mm")
    private String timePoint;
 
    @ApiModelProperty("预约订单id")
    private Long counsellingOrderId;
 
    @ApiModelProperty("用户信息对象")
    private CustomerUpdateRequest customerUpdateRequest;
 
    @ApiModelProperty("咨询师id")
    private Long counsellingId;
 
 
 
 
}