fhx
2024-04-11 8aabd6f9a44fb4de7ef2c70ff0a15fc000f4b5d9
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package com.hz.his.dto.preOrder;
 
import com.hz.his.dto.PageDto;
import lombok.Data;
 
import java.util.List;
 
/**
 * @ClassName Appointment
 * @Description 预约信息表
 * @Author Wrh
 * @Date 2022/10/18 11:10
 * @Version 1.0
 */
@Data
public class PreOrderDto extends PageDto {
 
    /*用户id*/
    private String userId;
    private String id;
    /*用户名称*/
    private String userName;
    /*预约开始时间*/
    private String startTime;
    /*预约结束时间*/
    private String endTime;
    /*门店Id*/
    private String shopId;
    /*门店名称*/
    private String shopName;
 
    /*来源标识(订单标识*/
    private String commonId;
    /*商品类型*/
    private String type;
    /*所属平台appId*/
    private String platBelongAppId;
    /*所属平台Code*/
    private String platBelongCode;
    /*所属平台名称*/
    private String platBelongName;
    /*来源平台appId*/
    private String platSourceAppId;
    /*来源平台code*/
    private String platSourceCode;
    /*来源平台名称*/
    private String platSourceName;
    /*是否SPA(0:否,1:是)*/
    private Integer isSpa;
    /*备注*/
    private String remarks;
    /*状态  0:待到店;1:取消预约;2:已到店;3:预约完成*/
    private Integer status;
    /*工作人员排班id*/
    private String employeeScheduleId;
    /*工作人员排班子项id*/
    private String employeeScheduleItemId;
    /*预约时长,以分钟为存储单位*/
    private Integer useDuration;
    /*员工名称*/
    private String employeeName;
    /*员工id*/
    private String employeeId;
    /*下单操作人标识(Employee)*/
    private String operatorId;
    private String operatorName;
 
 
    //预约项目
    List<PreOrderItemDto> preOrderItems;
 
}