BillProjectUpload.cs 572 B

123456789101112131415161718
  1. 
  2. namespace ZLPlugin_LisPacs_MR.Model
  3. {
  4. public class BillProjectUpload
  5. {
  6. public string applyTime { get; set; }
  7. public string computerName { get; set; } //计算机名称
  8. public string patientId { get; set; } // 病人id
  9. public string billProjectName { get; set; } //开单项目名称
  10. public string billTime { get; set; } //开单时间
  11. public string billType { get; set; } //开单类别
  12. public string billName { get; set; } //开单人
  13. public string medicId { get; set; } //医嘱id
  14. }
  15. }