1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- package com.diagbot.dto;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * @Description:
- * @Author:zhaops
- * @time: 2020/3/20 17:17
- */
- @Getter
- @Setter
- public class DiseaseDeptDTO {
- /**
- * 医院编码
- */
- private String hospitalCode;
- /**
- * HIS疾病名称
- */
- private String diseaseName;
- /**
- * icd10编码
- */
- private String icd10Code;
- /**
- * icd10名称
- */
- private String icd10Name;
- /**
- * 朗通疾病名称
- */
- private String conceptDisName;
- /**
- * 小科室
- */
- private String subDeptName;
- /**
- * 小科室编码
- */
- private String subDeptCode;
- /**
- * 大科室
- */
- private String deptName;
- /**
- * 大科室编码
- */
- private String deptCode;
- /**
- * 医院科室地址
- */
- private String url;
- /**
- * 建议
- */
- private String suggestion;
- }
|