| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- /**
- * 结果
- * @author auto create
- */
- class HoloBillSearchCommonShowDTO
- {
-
- /**
- * 单据编码
- **/
- public $bill_code;
-
- /**
- * 单据明细ID
- **/
- public $bill_detail_id;
-
- /**
- * 单据id
- **/
- public $bill_id;
-
- /**
- * 单据时间
- **/
- public $bill_time;
-
- /**
- * 单据类型
- **/
- public $bill_type;
-
- /**
- * 药品id
- **/
- public $drug_id;
-
- /**
- * 批号
- **/
- public $produce_batch_no;
-
- /**
- * 签章URL
- **/
- public $sealed_report_url;
- }
- ?>
|