using System; using System.Collections.Generic; using System.Text; using DllEapEntity.Dtos; namespace DllEapEntity.OFILM { public class HomeData { /// /// 月总人数 /// public int total { get; set; } = 0; /// /// 日平均人数 /// public int average { get; set; } /// /// 访问量趋势图 /// public ChartDto dto { get; set; } = new ChartDto() { LegendData=new List() { "当天访问量" ,"当天访问人次" }, SeriesData = new List() }; } }