package com.pz.system.domain.vo;

import lombok.Data;
import lombok.EqualsAndHashCode;

import java.util.Date;

/**
 * <p>created in  2023/9/14 14:49
 *
 * @author WangMin
 * @version 1.0
 */
@EqualsAndHashCode(callSuper = true)
@Data
public class DbwzOrderItemVo extends OrderCommonVo {

    /**
     * 用户名称
     */
    private String userName;

    /**
     * 科室
     */
    private String department;

    /**
     * 医生
     */
    private String doctor;

    /**
     * 预约时间
     */
    private Date visitTime;


    /**
     * 主诉
     */
    private String chiefComplaint;

    /**
     * 现病史
     */
    private String historyOfPresentIllness;

    /**
     * 即往史
     */
    private String pastHistory;

    /**
     * 相关报告链接
     */
    private String relatedReports;

    /**
     * 服务要求
     */
    private String serviceRequirements;

    /**
     * 上次就医情况
     */
    private String lastMedicalTreatmentSituation;

    /**
     * 治疗后情况
     */
    private String postTreatmentCondition;

}