StableVersion4.3/HL_FristAidPlatform_DTO/EcgInterface/EqmtView.cs

31 lines
1018 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

namespace HL_FristAidPlatform_DTO
{
public class EqmtView
{
/// <summary>
/// 设备号
/// </summary>
public string eqmtNo { get; set; }
/// <summary>
/// 设备类型默认心电类设备0:代表心电类
/// </summary>
public string eqmtClass { get; set; }
/// <summary>
/// 设备型号
/// </summary>
public string eqmtTypeNo { get; set; }
/// <summary>
/// 静态或者动态设备默认动态0:动态1:静态,因为静态设备使用时间短,发送数据小,发放的数据包括用户信息以及采集的数据的一次发放
/// </summary>
public string ifStatic { get; set; }
/// <summary>
/// 使用状态0:可用1:不可用
/// </summary>
public string useStatus { get; set; }
/// <summary>
/// 不可用原因
/// </summary>
public string noUseReason { get; set; }
}
}