123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Linq;
- using System.Text;
- namespace MediII.Adapter.ReceiveToKCModel
- {
- [Serializable]
- public class original_data_zhuyuan : BaseEntity
- {
- public Int64 No { get; set;}
- public string patient_zyh { get; set;}
- public string patient_id { get; set;}
- public DateTime fee_date { get; set;}
- public string order_unit_id { get; set;}
- public string order_doctor_id { get; set;}
- public string exec_unit_id { get; set;}
- public string exec_doctor_id { get; set;}
- public string patient_unit_id { get; set;}
- public string bed_doctor_id { get; set;}
- public string bq_id { get; set;}
- public string bed_id { get; set;}
- public string fee_type_id { get; set;}
- public string fee_type_name { get; set;}
- public string item_id { get; set;}
- public string item_name { get; set;}
- public Decimal item_quantity { get; set;}
- public Decimal price { get; set;}
- public Decimal fee { get; set;}
- }
- }
|