BillDealStatusSearchDo.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <?php
  2. /**
  3. * 返回列表
  4. * @author auto create
  5. */
  6. class BillDealStatusSearchDo
  7. {
  8. /**
  9. * 单号号
  10. **/
  11. public $bill_code;
  12. /**
  13. * 单据日期
  14. **/
  15. public $bill_time;
  16. /**
  17. * 单据类型
  18. **/
  19. public $bill_type;
  20. /**
  21. * 上传日期
  22. **/
  23. public $crt_date;
  24. /**
  25. * 发货单位唯一标识
  26. **/
  27. public $from_ref_user_id;
  28. /**
  29. * 发货单位主键
  30. **/
  31. public $from_user_id;
  32. /**
  33. * 发货单位
  34. **/
  35. public $from_user_name;
  36. /**
  37. * 操作人标识
  38. **/
  39. public $ic_code;
  40. /**
  41. * 药品类型
  42. **/
  43. public $physic_type;
  44. /**
  45. * 处理日期
  46. **/
  47. public $process_date;
  48. /**
  49. * 处理结果表状态(暂不用)
  50. **/
  51. public $process_flag;
  52. /**
  53. * 处理信息
  54. **/
  55. public $process_info;
  56. /**
  57. * 用户唯一标识
  58. **/
  59. public $ref_user_id;
  60. /**
  61. * 企业名称
  62. **/
  63. public $ref_user_name;
  64. /**
  65. * 处理状态 0,处理中 1, 上传成功 3, 处理成功 4, 处理失败
  66. **/
  67. public $result_type;
  68. /**
  69. * 角色类型
  70. **/
  71. public $role_type;
  72. /**
  73. * 文件名
  74. **/
  75. public $short_file_name;
  76. /**
  77. * 单据号
  78. **/
  79. public $store_inout_seq_no;
  80. /**
  81. * 51全部成功 52部分成功
  82. **/
  83. public $sub_process_flag;
  84. /**
  85. * 收货单位唯一标识
  86. **/
  87. public $to_ref_user_id;
  88. /**
  89. * 收货单位主键
  90. **/
  91. public $to_user_id;
  92. /**
  93. * 收货单位
  94. **/
  95. public $to_user_name;
  96. /**
  97. * 上传文件名
  98. **/
  99. public $upload_file_name;
  100. /**
  101. * 上传标识
  102. **/
  103. public $upload_flag;
  104. /**
  105. * 用户主键
  106. **/
  107. public $user_id;
  108. }
  109. ?>