package com.hz.his.dto.appointment; import lombok.Data; /** * 预约参数封装 * * @Author: zhouxiang * @Date: 2022/06/01/17:44 * @Description: */ @Data public class AppointmentCrmAddDto { //处理类型(1新增2编辑3取消) private Integer handleType; //预约id private String appointmentId; //crm来源id private String sourceId; //门店标识 private String shopId; //用户标识 private String userId; //医生标识 private String doctorId; //就诊类型 private String visitType; //预约类型 private Integer appType; //预约开始时间 private String startTime; //预约结束时间 private String endTime; //备注 private String remark; //餐食备注 private String mealsRemark; //项目json private String projectJson; //项目ID private String projectIds; //项目名称 private String projectNames; //面诊时长,以分为单位 private Integer docComDuration; //沟通时长,以分为单位 private Integer comDuration; //手术准备时长,以分为单位" private Integer readyDuration; //治疗时长,以分为单位 private Integer treatDuration; //等待时长,以分为单位 private Integer waitDuration; //麻敷时间,以分为存储单位 private Integer palsyDuration; }