35 lines
1.6 KiB
C#
35 lines
1.6 KiB
C#
|
|
using SqlSugar;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace Hopetry.App.SugarModel.FeiXianModel.YingJingJu
|
|||
|
|
{
|
|||
|
|
[SugarTable("ztk_jcjk_jkdw")]
|
|||
|
|
public class ztk_jcjk_jkdw
|
|||
|
|
{
|
|||
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|||
|
|
public int id { get; set; } // 主键
|
|||
|
|
public string ssfz { get; set; } // 所属分组
|
|||
|
|
public string jkdmckjg { get; set; } // 监控点可见光名称
|
|||
|
|
public string jkdmcrcx { get; set; } // 监控点热成像名称
|
|||
|
|
public string jkdgbidzlkjg { get; set; } // 监控点可见光国标ID(主流)
|
|||
|
|
public string jkdgbidzlrcx { get; set; } // 监控点热成像国标ID(主流)
|
|||
|
|
public string jkdgbidfl { get; set; } // 监控点国标ID(辅流)
|
|||
|
|
public string sssbgbid { get; set; } // 所属设备国标ID
|
|||
|
|
public string sbidkjg { get; set; } // 设备可见光ID
|
|||
|
|
public string sbidrcx { get; set; } // 设备热成像ID
|
|||
|
|
public string sbip { get; set; } // 设备IP
|
|||
|
|
public string zxzt { get; set; } // 在线状态
|
|||
|
|
public string qdlxzt { get; set; } // 前端录像状态
|
|||
|
|
public string ptlxkqzt { get; set; } // 平台录像开启状态
|
|||
|
|
public string ptlxzt { get; set; } // 平台录像状态
|
|||
|
|
public decimal jd { get; set; } // 经度
|
|||
|
|
public decimal wd { get; set; } // 纬度
|
|||
|
|
public string tyzt { get; set; } // 停用状态
|
|||
|
|
public string qx { get; set; } // 区县
|
|||
|
|
public string jklx { get; set; } // 监控类型
|
|||
|
|
public int isshow { get; set; }//是否显示
|
|||
|
|
}
|
|||
|
|
}
|