using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace Models { /// /// /// [SugarTable("base_sensor_info")] public class Base_sensor_info { /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="sensorid" ,IsPrimaryKey = true) ] public string Sensorid { get; set; } = null!; /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="combineid" ) ] public string Combineid { get; set; } = null!; /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="name" ) ] public string? Name { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="sensorser" ) ] public decimal? Sensorser { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="sensortypeid" ) ] public decimal? Sensortypeid { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="deviceid" ) ] public string? Deviceid { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="readinterval" ) ] public decimal? Readinterval { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="multdata" ) ] public decimal? Multdata { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="timedout" ) ] public decimal? Timedout { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="returnimm" ) ] public decimal? Returnimm { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="mapid" ) ] public string? Mapid { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="recordtime" ) ] public DateTime? Recordtime { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="deleteflag" ) ] public int? Deleteflag { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="recordperson" ) ] public int? Recordperson { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="objid" ,IsIdentity = true) ] public int Objid { get; set; } /// /// 备 注:是否调用适配器 1是 2否 /// 默认值: /// [SugarColumn(ColumnName="CallAdapter" ) ] public decimal? CallAdapter { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="CallCombineID" ) ] public string? CallCombineID { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="mesid" ) ] public string? Mesid { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="DelayTime" ) ] public string? DelayTime { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="ReadCounts" ) ] public string? ReadCounts { get; set; } } }