StableVersion4.3/HL_FristAidPlatform_DTO/Base/T_Base_VideoDeviceServerDTO.cs

73 lines
1.8 KiB
C#
Raw Permalink 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
{
/// <summary>
/// 视频监控服务器端
/// </summary>
public class T_Base_VideoDeviceServerDTO
{
/// <summary>
/// ID
/// </summary>
public long ID { get; set; }
/// <summary>
/// GUID
/// </summary>
public string GUID { get; set; }
/// <summary>
/// 监控平台用户名
/// </summary>
public string UserName { get; set; }
/// <summary>
/// 监控平台用户密码
/// </summary>
public string Password { get; set; }
/// <summary>
/// 设备名称
/// </summary>
public string ServerName { get; set; }
/// <summary>
/// 服务器类型1注册服务器2流媒体服务器3报警服务器4解码服务器
/// </summary>
public int ServerType { get; set; }
/// <summary>
/// 云平台地址即IP地址
/// </summary>
public string ServerIP { get; set; }
/// <summary>
/// 通信端口
/// </summary>
public string CommunicationPort { get; set; }
/// <summary>
/// 查询端口
/// </summary>
public string QueryPort { get; set; }
/// <summary>
/// 启用标记0启用1禁用
/// </summary>
public int DeleteFlag { get; set; }
/// <summary>
/// CreationDate
/// </summary>
public string CreationDate { get; set; }
/// <summary>
/// CreatorID
/// </summary>
public long CreatorID { get; set; }
/// <summary>
/// Creator
/// </summary>
public string Creator { get; set; }
}
}