fhx
2024-04-07 860c4e691821197e05e12cc6288a36f89c410181
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
package com.hz.his.dto.appointment;
 
import lombok.Data;
 
/**
 * 预约预约dto
 * @USER: fhx
 * @DATE: 2024/3/27
 **/
@Data
public class AppointmentAutoMateDto {
 
    /** 操作人类型(OperatorConstants) */
    private Integer opType;
    /** 操作人标识 */
    private String opId;
    /** 操作人角色id(EmployeeRole) */
    private String opRoleId;
 
    /** 用户id */
    private String userId;
    /** 门店id */
    private String shopId;
    /** 医生id */
    private String doctorId;
    /** 预约id */
    private String aptId;
 
    /** 就诊类型 */
    private String visitType;
    /** 预约类型 */
    private Integer appType;
    /** 是否转疗 */
    private Integer isSwitch;
    /** 是否MIC同意 */
    private Integer isMicApprove;
    /** 是否特殊客户 */
    private Integer specialUser;
 
    /** 预约项目json字符串 */
    private String projectJson;
 
    /** 开始日期(yyyy-MM-dd) */
    private String arriveDate;
    /** 开始时间 */
    private String startTime;
    /** 结束时间 */
    private String endTime;
 
    /** 沟通时长(分) */
    private Integer comDuration;
    /** 敷麻时长(分) */
    private Integer palsyDuration;
    /** 等待时长(分) */
    private Integer waitDuration;
    /** 实际面诊时长(分) */
    private Integer realMzTime;
 
    /** 是否当天分隔上下午匹配(默认false) */
    private boolean isDaySpace = false;
 
}