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
49 lines
1.3 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Pacs.Devices
|
|
{
|
|
public class UpdateDeviceDto
|
|
{
|
|
/// <summary>
|
|
/// 设备ID
|
|
/// </summary>
|
|
public Guid DeviceId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
public string DisplayName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 仪器类别
|
|
/// </summary>
|
|
public Guid DeviceTypeId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设备协议 0-视频采集图片和导入图片,1-dicom
|
|
/// </summary>
|
|
public char DeviceProtocolFlag { get; set; }
|
|
|
|
/// <summary>
|
|
/// DICOM设备AETitle 该一般字段存储英文字符,仅DICOM设备需要设置
|
|
/// </summary>
|
|
public string AeTitle { get; set; }
|
|
|
|
/// <summary>
|
|
/// 编码
|
|
/// </summary>
|
|
public string DeviceCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 仪器图片类型 (0-仪器图片 1-报告图片)
|
|
/// </summary>
|
|
public char DeviceImageType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设备支持的语言编码(0-中文 1-英文) 默认中文
|
|
/// </summary>
|
|
public char EncodingFlag { get; set; } = '0';
|
|
}
|
|
}
|