123456789101112131415161718 |
-
- namespace ZLPlugin_LisPacs_MR.Model
- {
- public class BillProjectUpload
- {
- public string applyTime { get; set; }
- public string computerName { get; set; } //计算机名称
- public string patientId { get; set; } // 病人id
- public string billProjectName { get; set; } //开单项目名称
- public string billTime { get; set; } //开单时间
- public string billType { get; set; } //开单类别
- public string billName { get; set; } //开单人
- public string medicId { get; set; } //医嘱id
- }
- }
|