AppDrugReportDTO.php 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?php
  2. /**
  3. * 结果
  4. * @author auto create
  5. */
  6. class AppDrugReportDTO
  7. {
  8. /**
  9. * 批准文号
  10. **/
  11. public $approval_licence_no;
  12. /**
  13. * 委托企业
  14. **/
  15. public $ass_ent_name;
  16. /**
  17. * mah
  18. **/
  19. public $authorized_ent_name;
  20. /**
  21. * 单据号
  22. **/
  23. public $bill_code;
  24. /**
  25. * 单据detail
  26. **/
  27. public $bill_detail_id;
  28. /**
  29. * 单据id
  30. **/
  31. public $bill_id;
  32. /**
  33. * 单据时间
  34. **/
  35. public $bill_time_desc;
  36. /**
  37. * 单据类型
  38. **/
  39. public $bill_type;
  40. /**
  41. * 药品id
  42. **/
  43. public $drug_id;
  44. /**
  45. * 药品信息
  46. **/
  47. public $drug_info_desc;
  48. /**
  49. * 报告状态(0 :待发送 2:待签收 3:已签收 4:已拒绝)
  50. **/
  51. public $drug_report_sign_status;
  52. /**
  53. * 发货企业
  54. **/
  55. public $from_ent_name;
  56. /**
  57. * 发货企业
  58. **/
  59. public $from_ref_ent_id;
  60. /**
  61. * 批号
  62. **/
  63. public $produce_batch_no;
  64. /**
  65. * 生产企业
  66. **/
  67. public $produce_ent_name;
  68. /**
  69. * 签章报告URL
  70. **/
  71. public $seal_report_url;
  72. /**
  73. * 签章坐标
  74. **/
  75. public $seal_signatures;
  76. }
  77. ?>