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.
43 lines
979 B
43 lines
979 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CameraErrorCheck
|
|
{
|
|
/// <summary>
|
|
/// 摄像头信息数据模型
|
|
/// </summary>
|
|
public class CameraInfoMo
|
|
{
|
|
/// <summary>
|
|
/// 摄像头信息ID
|
|
/// </summary>
|
|
public string ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 摄像头编码
|
|
/// </summary>
|
|
public string C_NO { get; set; }
|
|
/// <summary>
|
|
/// 摄像头名称
|
|
/// </summary>
|
|
public string C_NAME { get; set; }
|
|
/// <summary>
|
|
/// 摄像头机构信息ID
|
|
/// </summary>
|
|
public string ORG_ID { get; set; }
|
|
/// <summary>
|
|
/// 摄像头机构名称
|
|
/// </summary>
|
|
public string ORG_NAME { get; set; }
|
|
/// <summary>
|
|
/// 云播放地址
|
|
/// </summary>
|
|
public string PLAYURL { get; set; }
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|