zhouxiang
2022-10-19 97d4be46878693118131656a1d9b9541cef41985
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
package com.hz.his.dto.preOrder;
 
import com.hz.his.dto.PageDto;
import lombok.Data;
 
import java.util.Date;
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 Date startTime;
    /*预约结束时间*/
    private Date endTime;
    /*门店Id*/
    private String shopId;
    /*门店名称*/
    private String shopName;
    /*美容师Id*/
    private String beauticianId;
    /*美容师名称*/
    private String beauticianName;
    /*来源标识(订单标识*/
    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;
 
    //预约项目
    List<PreOrderItemDto> preOrderItems;
 
}