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
package com.hz.his.dto.appointment;
 
import lombok.Data;
 
/**
 * 预约参数封装
 *
 * @Author: zhouxiang
 * @Date: 2022/06/01/17:44
 * @Description:
 */
@Data
public class AppointmentCrmAddDto {
 
    //处理类型(1新增2编辑3取消)
    private Integer handleType;
 
    //预约id
    private String appointmentId;
    //crm来源id
    private String sourceId;
 
    //门店标识
    private  String shopId;
    //用户标识
    private  String userId;
    //医生标识
    private  String doctorId;
    //就诊类型
    private  String visitType;
    //预约类型
    private  Integer appType;
    //预约开始时间
    private  String startTime;
    //预约结束时间
    private  String endTime;
    //备注
    private  String remark;
    //餐食备注
    private  String mealsRemark;
 
    //项目json
    private String projectJson;
    //项目ID
    private String projectIds;
    //项目名称
    private String projectNames;
 
 
    //面诊时长,以分为单位
    private  Integer docComDuration;
    //沟通时长,以分为单位
    private  Integer comDuration;
    //手术准备时长,以分为单位"
    private  Integer readyDuration;
    //治疗时长,以分为单位
    private  Integer treatDuration;
    //等待时长,以分为单位
    private  Integer waitDuration;
    //麻敷时间,以分为存储单位
    private  Integer palsyDuration;
 
 
}