RightInfo.cs 655 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using IntelligentControlForsx.MyControls;
  7. namespace IntelligentControlForsx.Service.HomeFormInfo.Domain
  8. {
  9. public class RightInfo
  10. {
  11. /// <summary>
  12. /// 安全生产天数
  13. /// </summary>
  14. public string SafetyDayCount { set; get; }
  15. public IList<Info> InfoList { set; get; }
  16. #region 折线图相关数据
  17. public DateTime[] DateTimeArray { set; get; }
  18. public Double[] SpeedArray { set; get; }
  19. public Double[] PowerArray { set; get; }
  20. #endregion
  21. }
  22. }