PACS.cs 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace LisPacsDataUpload.Models
  6. {
  7. public class PACS
  8. {
  9. public string PATIENTAGE { get; set; }
  10. public string AGEUNIT { get; set; }
  11. public string PATIENTIDCARD { get; set; }
  12. public string INTIME { get; set; }
  13. public string INPATIENTAREANAME { get; set; }
  14. public string ROOMNO { get; set; }
  15. public string BEDNO { get; set; }
  16. public string PHONENO { get; set; }
  17. public string ADDRESS { get; set; }
  18. public string REPORTTYPENAME { get; set; }
  19. public string REPORTTYPECODE { get; set; }
  20. public string DIAGNOSISCODE { get; set; }
  21. public string DIAGNOSISNAME { get; set; }
  22. public string APPLYTIME { get; set; }
  23. public string APPLYERCODE { get; set; }
  24. public string APPLYERNAME { get; set; }
  25. public string APPLYDEPTCODE { get; set; }
  26. public string APPLYDEPTNAME { get; set; }
  27. public string APPLYORGCODE { get; set; }
  28. public string APPLYORGNAME { get; set; }
  29. public string RECEIVERTIME { get; set; }
  30. public string RECEIVERCODE { get; set; }
  31. public string RECEIVERNAME { get; set; }
  32. public string CHECKTIME { get; set; }
  33. public string CHECKERCODE { get; set; }
  34. public string CHECKERNAME { get; set; }
  35. public string CHECKDEPTCODE { get; set; }
  36. public string CHECKDEPTNAME { get; set; }
  37. public string REPORTTIME { get; set; }
  38. public string REPORTORCODE { get; set; }
  39. public string REPORTORNAME { get; set; }
  40. public string AUDITTIME { get; set; }
  41. public string AUDITORCODE { get; set; }
  42. public string AUDITORNAME { get; set; }
  43. public string LOCALITEMID { get; set; }
  44. public string STANDARDITEMID { get; set; }
  45. public string ITEMNAME { get; set; }
  46. public string PURPOSE { get; set; }
  47. public string TESTPRICE { get; set; }
  48. public string CHECKTYPECODE { get; set; }
  49. public string CHECKTYPENAME { get; set; }
  50. public string POSITIONCODE { get; set; }
  51. public string POSITIONNAME { get; set; }
  52. public string METHODCODE { get; set; }
  53. public string METHODNAME { get; set; }
  54. public string ISENGANCED { get; set; }
  55. public string ISMAKESHADOW { get; set; }
  56. public string PROCESS { get; set; }
  57. public string FINDINGS { get; set; }
  58. public string DIAGNOSRESULT { get; set; }
  59. public string RESULTTYPE { get; set; }
  60. public string UNIT { get; set; }
  61. public string MACHINETYPE { get; set; }
  62. public string MACHINECODE { get; set; }
  63. public string MACHINENAME { get; set; }
  64. public string ATTACHMENTID { get; set; }
  65. public string STUDYINSTANCEUID { get; set; }
  66. public string DICOMIMGFTPURL { get; set; }
  67. public string ORGCODE { get; set; }
  68. public string ORGNAME { get; set; }
  69. public string PACSYUNORGCODE { get; set; }
  70. public string REPORTID { get; set; }
  71. public string REPORTNAME { get; set; }
  72. public string REPORTTYPE { get; set; }
  73. public string REQUESTID { get; set; }
  74. public string BUSINESSNUMBER { get; set; }
  75. public string PATIENTTYPE { get; set; }
  76. public string PATIENTNAME { get; set; }
  77. public string PATIENTSEX { get; set; }
  78. public string PATIENTBIRTHDAY { get; set; }
  79. public string REGIONHR { get; set; }
  80. public string HEALTHNO { get; set; } //电子健康卡号
  81. public string MEDICARENO { get; set; }//医保卡号
  82. public string ACCESSNUMBER { get; set; }//检查编号(检查流水号)
  83. public string CONCLUSION { get; set; }//检查印象,没有填“无”
  84. public string BRIEFHISTORY { get; set; }//简要病史
  85. public string ISIMAGESERVICE { get; set; } //是否属于数字影像服务(0-否;1-是),当前传0
  86. public string STUDYUID { get; set; } // 检查 UID,DICOM 中协议中影像检查唯一标识
  87. }
  88. }