PosQueryModel.cs 948 B

123456789101112131415161718192021222324252627282930313233343536
  1. using Ips.Library.Entity;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Ips.Sps.TskResults.Poses
  9. {
  10. public class PosQueryModel : INotifyPropertyChanged
  11. {
  12. public event PropertyChangedEventHandler PropertyChanged;
  13. public int TskId { get; set; }
  14. public int SigId { get; set; }
  15. public int LastHours { get; set; }
  16. [DisplayName("开始时间")]
  17. public DateTime StartTime { get; set; } = DateTime.MinValue;
  18. [DisplayName("结束时间")]
  19. public DateTime EndTime { get; set; } = DateTime.MaxValue;
  20. [DisplayName("定位类型")]
  21. public PosType[] PosTypes { get; set; }
  22. [DisplayName("信号目标")]
  23. public int[] EmtIds { get; set; }
  24. [DisplayName("显示无效点")]
  25. public bool ShowNotValidPoint { get; set; }
  26. }
  27. }