fhx
2024-03-28 525adfb81802e718ec2016a0dd34c27900762a13
提交 | 用户 | age
0e8ace 1 package com.hz.his.dto.appointment;
F 2
3 import lombok.Data;
4
5 /**
6  * 预约预约dto
7  * @USER: fhx
8  * @DATE: 2024/3/27
9  **/
10 @Data
11 public class AppointmentAutoMateDto {
12
13     /** 操作人类型(OperatorConstants) */
14     private Integer opType;
15     /** 操作人标识 */
16     private String opId;
17     /** 操作人角色id(EmployeeRole) */
18     private String opRoleId;
19
20     /** 用户id */
21     private String userId;
22     /** 门店id */
23     private String shopId;
24     /** 医生id */
25     private String doctorId;
26     /** 预约id */
27     private String aptId;
28
29     /** 就诊类型 */
30     private String visitType;
31     /** 预约类型 */
32     private Integer appType;
33     /** 是否转疗 */
34     private Integer isSwitch;
35     /** 是否MIC同意 */
36     private Integer isMicApprove;
37     /** 是否特殊客户 */
38     private Integer specialUser;
39
40     /** 预约项目json字符串 */
41     private String projectJson;
42
43     /** 开始日期(yyyy-MM-dd) */
44     private String arriveDate;
45     /** 开始时间 */
46     private String startTime;
47     /** 结束时间 */
48     private String endTime;
49
525adf 50     /** 沟通时长(分) */
F 51     private Integer comDuration;
52     /** 敷麻时长(分) */
0e8ace 53     private Integer palsyDuration;
525adf 54     /** 等待时长(分) */
0e8ace 55     private Integer waitDuration;
525adf 56     /** 实际面诊时长(分) */
0e8ace 57     private Integer realMzTime;
F 58
59
60 }