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; }