OnenetDrugInfoDTO.php 740 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php
  2. /**
  3. * 结果
  4. * @author auto create
  5. */
  6. class OnenetDrugInfoDTO
  7. {
  8. /**
  9. * 是否激活:0未激活,1激活
  10. **/
  11. public $active_status;
  12. /**
  13. * 批次
  14. **/
  15. public $batch_no;
  16. /**
  17. * 药品id
  18. **/
  19. public $drug_id;
  20. /**
  21. * 有效期至
  22. **/
  23. public $expire_date;
  24. /**
  25. * mah名字
  26. **/
  27. public $mah_name;
  28. /**
  29. * mahRefEntId
  30. **/
  31. public $mah_ref_ent_id;
  32. /**
  33. * 药品名称
  34. **/
  35. public $physic_name;
  36. /**
  37. * 包装规格
  38. **/
  39. public $pkg_spec;
  40. /**
  41. * 制剂规格
  42. **/
  43. public $prepn_spec;
  44. /**
  45. * 生产日期
  46. **/
  47. public $produce_date;
  48. /**
  49. * 生产企业名称
  50. **/
  51. public $produce_ent_name;
  52. /**
  53. * 生产企业refEntId
  54. **/
  55. public $produce_ref_ent_id;
  56. }
  57. ?>