| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- /**
- * 结果
- * @author auto create
- */
- class OnenetDrugInfoDTO
- {
-
- /**
- * 是否激活:0未激活,1激活
- **/
- public $active_status;
-
- /**
- * 批次
- **/
- public $batch_no;
-
- /**
- * 药品id
- **/
- public $drug_id;
-
- /**
- * 有效期至
- **/
- public $expire_date;
-
- /**
- * mah名字
- **/
- public $mah_name;
-
- /**
- * mahRefEntId
- **/
- public $mah_ref_ent_id;
-
- /**
- * 药品名称
- **/
- public $physic_name;
-
- /**
- * 包装规格
- **/
- public $pkg_spec;
-
- /**
- * 制剂规格
- **/
- public $prepn_spec;
-
- /**
- * 生产日期
- **/
- public $produce_date;
-
- /**
- * 生产企业名称
- **/
- public $produce_ent_name;
-
- /**
- * 生产企业refEntId
- **/
- public $produce_ref_ent_id;
- }
- ?>
|