You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Entity
|
|
|
|
|
|
{
|
|
|
|
|
|
public class TemperatureData
|
|
|
|
|
|
{
|
|
|
|
|
|
public long? ObjId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string monitorId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string ProbeAddress { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public decimal MaxTemperature { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public decimal? MinTemperature { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public decimal? AvgTemperature { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public DateTime CollectTime { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public DateTime? RecodeTime { get; set; }
|
|
|
|
|
|
// 768个站点温度数组,索引0=Site1,索引1=Site2 ... 索引767=Site768
|
|
|
|
|
|
public decimal[] Sites { get; set; } = new decimal[768];
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|