fhx
2024-04-11 8aabd6f9a44fb4de7ef2c70ff0a15fc000f4b5d9
提交 | 用户 | age
9df995 1 package com.hz.his.dto.preOrder;
W 2
3 import com.hz.his.dto.PageDto;
4 import lombok.Data;
5
6 import java.util.List;
7
8 /**
9  * @ClassName Appointment
10  * @Description 预约信息表
11  * @Author Wrh
12  * @Date 2022/10/18 11:10
13  * @Version 1.0
14  */
15 @Data
16 public class PreOrderDto extends PageDto {
17
18     /*用户id*/
19     private String userId;
20     private String id;
21     /*用户名称*/
22     private String userName;
23     /*预约开始时间*/
98b58d 24     private String startTime;
9df995 25     /*预约结束时间*/
98b58d 26     private String endTime;
9df995 27     /*门店Id*/
W 28     private String shopId;
29     /*门店名称*/
30     private String shopName;
f18b2d 31
9df995 32     /*来源标识(订单标识*/
W 33     private String commonId;
34     /*商品类型*/
35     private String type;
36     /*所属平台appId*/
37     private String platBelongAppId;
38     /*所属平台Code*/
39     private String platBelongCode;
40     /*所属平台名称*/
41     private String platBelongName;
42     /*来源平台appId*/
43     private String platSourceAppId;
44     /*来源平台code*/
45     private String platSourceCode;
46     /*来源平台名称*/
47     private String platSourceName;
cdc4fd 48     /*是否SPA(0:否,1:是)*/
W 49     private Integer isSpa;
e8236a 50     /*备注*/
W 51     private String remarks;
3eba7e 52     /*状态  0:待到店;1:取消预约;2:已到店;3:预约完成*/
W 53     private Integer status;
f18b2d 54     /*工作人员排班id*/
W 55     private String employeeScheduleId;
56     /*工作人员排班子项id*/
57     private String employeeScheduleItemId;
58     /*预约时长,以分钟为存储单位*/
59     private Integer useDuration;
60     /*员工名称*/
61     private String employeeName;
62     /*员工id*/
63     private String employeeId;
b4e1d1 64     /*下单操作人标识(Employee)*/
W 65     private String operatorId;
82e1cb 66     private String operatorName;
f18b2d 67
e8236a 68
9df995 69     //预约项目
W 70     List<PreOrderItemDto> preOrderItems;
71
72 }