using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YBDevice.Application { /// /// 图标显示内容 /// public class ReportChartDto { /// /// 日注册用户数 /// public int DayRegCnt { get; set; } /// /// 日测量数 /// public int DayResultCnt { get; set; } /// /// 日收益 /// public int DayInCome { get; set; } /// /// 日活跃设备数 /// public int DayDevCnt { get; set; } /// /// 时间 /// public string Time { get; set; } } }