fhx
2023-08-01 4a3c41eed5a83721ab4bddd104f0a4a25a05b2fc
提交 | 用户 | age
27843e 1 package com.hz.his.dto.appointment;
F 2
3 import lombok.Data;
4
5 /**
6  * 预约参数封装
7  *
8  * @Author: zhouxiang
9  * @Date: 2022/06/01/17:44
10  * @Description:
11  */
12 @Data
13 public class AppointmentCrmAddDto {
14
15     //处理类型(1新增2编辑3取消)
16     private Integer handleType;
17
18     //预约id
19     private String appointmentId;
e2d5a0 20     //crm来源id
F 21     private String sourceId;
27843e 22
F 23     //门店标识
24     private  String shopId;
25     //用户标识
26     private  String userId;
27     //医生标识
28     private  String doctorId;
29     //就诊类型
30     private  String visitType;
31     //预约类型
32     private  Integer appType;
33     //预约开始时间
34     private  String startTime;
35     //预约结束时间
36     private  String endTime;
37     //备注
38     private  String remark;
39     //餐食备注
40     private  String mealsRemark;
41
42     //项目json
43     private String projectJson;
44     //项目ID
45     private String projectIds;
46     //项目名称
47     private String projectNames;
48
49
50     //面诊时长,以分为单位
51     private  Integer docComDuration;
52     //沟通时长,以分为单位
53     private  Integer comDuration;
54     //手术准备时长,以分为单位"
55     private  Integer readyDuration;
56     //治疗时长,以分为单位
57     private  Integer treatDuration;
58     //等待时长,以分为单位
59     private  Integer waitDuration;
60     //麻敷时间,以分为存储单位
61     private  Integer palsyDuration;
62
63
64 }