wangrenhuang
2022-10-19 ae7dd4b49b1fc7fd16e53fb45a21e4197e8e0c13
提交 | 用户 | 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.Date;
7 import java.util.List;
8
9 /**
10  * @ClassName Appointment
11  * @Description 预约信息表
12  * @Author Wrh
13  * @Date 2022/10/18 11:10
14  * @Version 1.0
15  */
16 @Data
17 public class PreOrderDto extends PageDto {
18
19     /*用户id*/
20     private String userId;
21     private String id;
22     /*用户名称*/
23     private String userName;
24     /*预约开始时间*/
25     private Date startTime;
26     /*预约结束时间*/
27     private Date endTime;
28     /*门店Id*/
29     private String shopId;
30     /*门店名称*/
31     private String shopName;
32     /*美容师Id*/
33     private String beauticianId;
34     /*美容师名称*/
35     private String beauticianName;
36     /*来源标识(订单标识*/
37     private String commonId;
38     /*商品类型*/
39     private String type;
40     /*所属平台appId*/
41     private String platBelongAppId;
42     /*所属平台Code*/
43     private String platBelongCode;
44     /*所属平台名称*/
45     private String platBelongName;
46     /*来源平台appId*/
47     private String platSourceAppId;
48     /*来源平台code*/
49     private String platSourceCode;
50     /*来源平台名称*/
51     private String platSourceName;
52
53     //预约项目
54     List<PreOrderItemDto> preOrderItems;
55
56 }