ProjectMonitorModel.cs 812 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace PMS.BusinessModels.CloudMonitorManage
  7. {
  8. public class ProjectMonitorModel
  9. {
  10. public string ID { get; set; }
  11. public string 渠道ID { get; set; }
  12. public string 渠道名称 { get; set; }
  13. public string 项目ID { get; set; }
  14. public string 项目名称 { get; set; }
  15. public DateTime 首次监控日期 { get; set; }
  16. public DateTime 最后监控日期 { get; set; }
  17. public int 监控状态 { get; set; }
  18. public string 监控状态显示 { get; set; }
  19. public string 服务器数量 { get; set; }
  20. public string 预警次数 { get; set; }
  21. public string 客户端ID { get; set; }
  22. }
  23. }