fhx
2023-07-06 ab46861e9ba1b01506d94afea430e5d9fc8a80de
提交 | 用户 | 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;
20
21     //门店标识
22     private  String shopId;
23     //用户标识
24     private  String userId;
25     //医生标识
26     private  String doctorId;
27     //就诊类型
28     private  String visitType;
29     //预约类型
30     private  Integer appType;
31     //预约开始时间
32     private  String startTime;
33     //预约结束时间
34     private  String endTime;
35     //备注
36     private  String remark;
37     //餐食备注
38     private  String mealsRemark;
39
40     //项目json
41     private String projectJson;
42     //项目ID
43     private String projectIds;
44     //项目名称
45     private String projectNames;
46
47
48     //面诊时长,以分为单位
49     private  Integer docComDuration;
50     //沟通时长,以分为单位
51     private  Integer comDuration;
52     //手术准备时长,以分为单位"
53     private  Integer readyDuration;
54     //治疗时长,以分为单位
55     private  Integer treatDuration;
56     //等待时长,以分为单位
57     private  Integer waitDuration;
58     //麻敷时间,以分为存储单位
59     private  Integer palsyDuration;
60
61
62 }