using System.Collections.Generic; namespace IStation.WinFrmUI.Monitor { /// /// 水量统计 /// public class WaterSum { public WaterSum() { } public int Year { get; set; } public int Month { get; set; } public List Records { get; set; } } }