using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace Ems.CollectService.Entity { /// /// 水实时数据 /// [SugarTable("record_water_instant")] public class RecordWaterInstant { /// /// 自增标识 /// [SugarColumn(ColumnName="objid" ,IsPrimaryKey = true )] public int objid { get; set; } /// /// 计量设备编号 /// [SugarColumn(ColumnName="monitor_id" )] public string monitorId { get; set; } /// /// 采集时间 /// [SugarColumn(ColumnName="collect_time" )] public DateTime? collectTime { get; set; } /// /// 瞬时流量 /// [SugarColumn(ColumnName="flux_flow" )] public decimal? fluxFlow { get; set; } /// /// 累计流量 /// [SugarColumn(ColumnName="water_flow" )] public decimal? waterFlow { get; set; } /// /// 记录时间 /// [SugarColumn(ColumnName="record_time" )] public DateTime? recordTime { get; set; } /// /// 采集方式 /// 默认值: 0 /// [SugarColumn(ColumnName="collect_type" )] public int? collectType { get; set; } /// /// 权限标识(部门) /// [SugarColumn(ColumnName="dept_id" )] public int? deptId { get; set; } /// /// 权限标识(用户) /// [SugarColumn(ColumnName="user_id" )] public int? userId { get; set; } } }