fwq
2022-10-20 dce20bc3e1d912f75d977acafba98e1eaf19cc9a
提交 | 用户 | 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;
31     /*美容师Id*/
32     private String beauticianId;
33     /*美容师名称*/
34     private String beauticianName;
35     /*来源标识(订单标识*/
36     private String commonId;
37     /*商品类型*/
38     private String type;
39     /*所属平台appId*/
40     private String platBelongAppId;
41     /*所属平台Code*/
42     private String platBelongCode;
43     /*所属平台名称*/
44     private String platBelongName;
45     /*来源平台appId*/
46     private String platSourceAppId;
47     /*来源平台code*/
48     private String platSourceCode;
49     /*来源平台名称*/
50     private String platSourceName;
cdc4fd 51     /*是否SPA(0:否,1:是)*/
W 52     private Integer isSpa;
e8236a 53     /*备注*/
W 54     private String remarks;
3eba7e 55     /*状态  0:待到店;1:取消预约;2:已到店;3:预约完成*/
W 56     private Integer status;
e8236a 57
9df995 58     //预约项目
W 59     List<PreOrderItemDto> preOrderItems;
60
61 }