12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using IntelligentControlForsx.MyControls;
- namespace IntelligentControlForsx.Service.HomeFormInfo.Domain
- {
- public class RightInfo
- {
- /// <summary>
- /// 安全生产天数
- /// </summary>
- public string SafetyDayCount { set; get; }
- public IList<Info> InfoList { set; get; }
- #region 折线图相关数据
- public DateTime[] DateTimeArray { set; get; }
- public Double[] SpeedArray { set; get; }
- public Double[] PowerArray { set; get; }
- #endregion
- }
- }
|