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#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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