using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Calculation.PlanAna
{
///
/// 时汇总记录
///
public class HourSumRecord
{
///
/// 0-23
///
public int Hour { get; set; }
///
/// 记录
///
public List Records { get; set; }
}
}