12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace LisPacsDataUpload.Models
- {
- public class PACS
- {
- public string PATIENTAGE { get; set; }
- public string AGEUNIT { get; set; }
- public string PATIENTIDCARD { get; set; }
- public string INTIME { get; set; }
- public string INPATIENTAREANAME { get; set; }
- public string ROOMNO { get; set; }
- public string BEDNO { get; set; }
- public string PHONENO { get; set; }
- public string ADDRESS { get; set; }
- public string REPORTTYPENAME { get; set; }
- public string REPORTTYPECODE { get; set; }
- public string DIAGNOSISCODE { get; set; }
- public string DIAGNOSISNAME { get; set; }
- public string APPLYTIME { get; set; }
- public string APPLYERCODE { get; set; }
- public string APPLYERNAME { get; set; }
- public string APPLYDEPTCODE { get; set; }
- public string APPLYDEPTNAME { get; set; }
- public string APPLYORGCODE { get; set; }
- public string APPLYORGNAME { get; set; }
- public string RECEIVERTIME { get; set; }
- public string RECEIVERCODE { get; set; }
- public string RECEIVERNAME { get; set; }
- public string CHECKTIME { get; set; }
- public string CHECKERCODE { get; set; }
- public string CHECKERNAME { get; set; }
- public string CHECKDEPTCODE { get; set; }
- public string CHECKDEPTNAME { get; set; }
- public string REPORTTIME { get; set; }
- public string REPORTORCODE { get; set; }
- public string REPORTORNAME { get; set; }
- public string AUDITTIME { get; set; }
- public string AUDITORCODE { get; set; }
- public string AUDITORNAME { get; set; }
- public string LOCALITEMID { get; set; }
- public string STANDARDITEMID { get; set; }
- public string ITEMNAME { get; set; }
- public string PURPOSE { get; set; }
- public string TESTPRICE { get; set; }
- public string CHECKTYPECODE { get; set; }
- public string CHECKTYPENAME { get; set; }
- public string POSITIONCODE { get; set; }
- public string POSITIONNAME { get; set; }
- public string METHODCODE { get; set; }
- public string METHODNAME { get; set; }
- public string ISENGANCED { get; set; }
- public string ISMAKESHADOW { get; set; }
- public string PROCESS { get; set; }
- public string FINDINGS { get; set; }
- public string DIAGNOSRESULT { get; set; }
- public string RESULTTYPE { get; set; }
- public string UNIT { get; set; }
- public string MACHINETYPE { get; set; }
- public string MACHINECODE { get; set; }
- public string MACHINENAME { get; set; }
- public string ATTACHMENTID { get; set; }
- public string STUDYINSTANCEUID { get; set; }
- public string DICOMIMGFTPURL { get; set; }
- public string ORGCODE { get; set; }
- public string ORGNAME { get; set; }
- public string PACSYUNORGCODE { get; set; }
- public string REPORTID { get; set; }
- public string REPORTNAME { get; set; }
- public string REPORTTYPE { get; set; }
- public string REQUESTID { get; set; }
- public string BUSINESSNUMBER { get; set; }
- public string PATIENTTYPE { get; set; }
- public string PATIENTNAME { get; set; }
- public string PATIENTSEX { get; set; }
- public string PATIENTBIRTHDAY { get; set; }
- public string REGIONHR { get; set; }
- public string HEALTHNO { get; set; } //电子健康卡号
- public string MEDICARENO { get; set; }//医保卡号
- public string ACCESSNUMBER { get; set; }//检查编号(检查流水号)
- public string CONCLUSION { get; set; }//检查印象,没有填“无”
- public string BRIEFHISTORY { get; set; }//简要病史
- public string ISIMAGESERVICE { get; set; } //是否属于数字影像服务(0-否;1-是),当前传0
- public string STUDYUID { get; set; } // 检查 UID,DICOM 中协议中影像检查唯一标识
- public string YZID { get; set; } //医嘱id 对应多检查的医嘱 相关部位的相关id
- }
- }
|