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.

29 lines
712 B
C#

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];
}
}