using System; using System.Linq; using System.Text; using SqlSugar; namespace OpenAuth.Repository.Domain { /// ///摄像头 /// [SugarTable("fm_camera")] public partial class FmCamera { public FmCamera(){ } /// /// Desc:主键 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string Id {get;set;} /// /// Desc:名称或编号 /// Default: /// Nullable:True /// public string Name {get;set;} /// /// Desc:类型(与字典对应) /// Default: /// Nullable:True /// public string Model {get;set;} /// /// Desc:状态 /// Default: /// Nullable:True /// public string Status {get;set;} /// /// Desc:厂商 /// Default: /// Nullable:True /// public string Manufacturer {get;set;} /// /// Desc:序列号 /// Default: /// Nullable:True /// public string SerialNumber {get;set;} /// /// Desc:ip /// Default: /// Nullable:True /// public string Ip {get;set;} /// /// Desc:通道 /// Default: /// Nullable:True /// public int? Channel {get;set;} /// /// Desc:坐标 /// Default: /// Nullable:True /// public string Lng {get;set;} /// /// Desc:坐标 /// Default: /// Nullable:True /// public string Lat {get;set;} /// /// Desc:更新时间 /// Default: /// Nullable:True /// public DateTime? UpdateTime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string AppKey {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string AppSecret {get;set;} /// /// Desc:端口 /// Default: /// Nullable:True /// public string Port {get;set;} /// /// Desc:原始区域路径 /// Default: /// Nullable:True /// public string RegionPathName {get;set;} /// /// Desc:监控点类型 枪机 0 半球 1 快球 2 带云台枪机 3 /// Default: /// Nullable:True /// public int? CameraType {get;set;} /// /// 大华热成像序列号 /// public string SerialNumberRcx { get; set; } } }