| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- <?php
- /**
- * 结果
- * @author auto create
- */
- class OnenetDrugReportTopDTO
- {
-
- /**
- * 委托企业
- **/
- public $ass_ref_ent_id;
-
- /**
- * 单据编码
- **/
- public $bill_code;
-
- /**
- * 单据明细ID
- **/
- public $bill_detail_id;
-
- /**
- * 单据ID
- **/
- public $bill_id;
-
- /**
- * 单据时间
- **/
- public $bill_time;
-
- /**
- * 单据类型
- **/
- public $bill_type;
-
- /**
- * 单据上传日期
- **/
- public $crt_date;
-
- /**
- * 药品ID
- **/
- public $drug_id;
-
- /**
- * 报告ID
- **/
- public $drug_report_id;
-
- /**
- * 报告状态(0 :待发送 2:待签收 3:已签收 4:已拒绝 7:对方已签收(更正待处理) 13:对方已拒绝(更正待签收))
- **/
- public $drug_report_sign_status;
-
- /**
- * 报告名称
- **/
- public $file_name;
-
- /**
- * 发货企业
- **/
- public $from_ent_name;
-
- /**
- * 发货企业
- **/
- public $from_ref_ent_id;
-
- /**
- * 药品名
- **/
- public $physic_name;
-
- /**
- * 包装
- **/
- public $pkg_spec;
-
- /**
- * 制剂
- **/
- public $prepn_spec;
-
- /**
- * 剂型
- **/
- public $prepn_type_desc;
-
- /**
- * 批号
- **/
- public $produce_batch_no;
-
- /**
- * 生产日期
- **/
- public $produce_date;
-
- /**
- * 生产企业ID
- **/
- public $produce_ent_id;
-
- /**
- * 生产企业
- **/
- public $produce_ent_name;
-
- /**
- * 签章位置
- **/
- public $seal_signatures;
-
- /**
- * 盖章状态 0:待盖章 5:已盖章 6:同批号已盖章
- **/
- public $seal_status;
-
- /**
- * 签章URL
- **/
- public $sealed_report_url;
-
- /**
- * 签收时间
- **/
- public $signed_time;
- }
- ?>
|