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