You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.3 KiB

1 year ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Shentun.Pacs.Devices
  5. {
  6. public class UpdateDeviceDto
  7. {
  8. /// <summary>
  9. /// 设备ID
  10. /// </summary>
  11. public Guid DeviceId { get; set; }
  12. /// <summary>
  13. /// 名称
  14. /// </summary>
  15. public string DisplayName { get; set; }
  16. /// <summary>
  17. /// 仪器类别
  18. /// </summary>
  19. public Guid DeviceTypeId { get; set; }
  20. /// <summary>
  21. /// 设备协议 0-视频采集图片和导入图片,1-dicom
  22. /// </summary>
  23. public char DeviceProtocolFlag { get; set; }
  24. /// <summary>
  25. /// DICOM设备AETitle 该一般字段存储英文字符,仅DICOM设备需要设置
  26. /// </summary>
  27. public string AeTitle { get; set; }
  28. /// <summary>
  29. /// 编码
  30. /// </summary>
  31. public string DeviceCode { get; set; }
  32. /// <summary>
  33. /// 仪器图片类型 (0-仪器图片 1-报告图片)
  34. /// </summary>
  35. public char DeviceImageType { get; set; }
  36. /// <summary>
  37. /// 设备支持的语言编码(0-中文 1-英文) 默认中文
  38. /// </summary>
  39. public char EncodingFlag { get; set; } = '0';
  40. }
  41. }