BillChkInOutDO.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <?php
  2. /**
  3. * 返回结果
  4. * @author auto create
  5. */
  6. class BillChkInOutDO
  7. {
  8. /**
  9. * 代理企业ID
  10. **/
  11. public $agent_ref_user_id;
  12. /**
  13. * 代理企业
  14. **/
  15. public $agent_user_name;
  16. /**
  17. * 单号号码
  18. **/
  19. public $bill_code;
  20. /**
  21. * 单据ID
  22. **/
  23. public $bill_id;
  24. /**
  25. * 单据时间
  26. **/
  27. public $bill_time;
  28. /**
  29. * 单据类型
  30. **/
  31. public $bill_type;
  32. /**
  33. * 单据类型
  34. **/
  35. public $bill_type_name;
  36. /**
  37. * 发货单位ID
  38. **/
  39. public $from_ref_user_id;
  40. /**
  41. * 发货企业ID
  42. **/
  43. public $from_user_id;
  44. /**
  45. * 发货单位
  46. **/
  47. public $from_user_name;
  48. /**
  49. * 处理日期
  50. **/
  51. public $process_date;
  52. /**
  53. * 生产日期
  54. **/
  55. public $produce_date;
  56. /**
  57. * 生产企业ID
  58. **/
  59. public $produce_ent_id;
  60. /**
  61. * 企业ID
  62. **/
  63. public $ref_user_id;
  64. /**
  65. * 企业名称
  66. **/
  67. public $ref_user_name;
  68. /**
  69. * 51全部成功 52部分成功
  70. **/
  71. public $sub_process_flag;
  72. /**
  73. * 收货单位ID
  74. **/
  75. public $to_ref_user_id;
  76. /**
  77. * 收货单位
  78. **/
  79. public $to_user_id;
  80. /**
  81. * 收货单位
  82. **/
  83. public $to_user_name;
  84. /**
  85. * 上传文件名
  86. **/
  87. public $upload_file_name;
  88. /**
  89. * 角色类型
  90. **/
  91. public $user_role_type;
  92. }
  93. ?>