using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Calculation.PlanAna
{
///
/// 月汇总记录
///
public class MonthSumRecord
{
///
/// 月份 1-12
///
public int Month { get; set; }
///
/// 记录列表
///
public List HourRecords { get; set; }
}
}