using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace Shentun.Pacs.Devices
{
public class DeviceDto : AuditedEntityDtoName
{
///
/// 名称
///
public string DisplayName { get; set; }
///
/// 仪器类别
///
public Guid DeviceTypeId { get; set; }
///
/// 设备协议 0-视频采集图片和导入图片,1-dicom
///
public char DeviceProtocolFlag { get; set; }
///
/// DICOM设备AETitle 该一般字段存储英文字符,仅DICOM设备需要设置
///
public string AeTitle { get; set; }
///
/// 简码
///
public string SimpleCode { get; set; }
///
/// 排序
///
public int DisplayOrder { get; set; }
///
/// 编码
///
public string DeviceCode { get; set; }
///
/// 仪器图片类型 (0-仪器图片 1-报告图片)
///
public char DeviceImageType { get; set; }
///
/// 设备支持的语言编码(0-中文 1-英文) 默认中文
///
public char EncodingFlag { get; set; }
}
}