| 123456789101112131415161718192021222324252627282930313233343536 | using Ips.Library.Entity;using System;using System.Collections.Generic;using System.ComponentModel;using System.Linq;using System.Text;using System.Threading.Tasks;namespace Ips.Sps.TskResults.Poses{    public class PosQueryModel : INotifyPropertyChanged    {        public event PropertyChangedEventHandler PropertyChanged;        public int TskId { get; set; }        public int SigId { get; set; }        public int LastHours { get; set; }        [DisplayName("开始时间")]        public DateTime StartTime { get; set; } = DateTime.MinValue;        [DisplayName("结束时间")]        public DateTime EndTime { get; set; } = DateTime.MaxValue;        [DisplayName("定位类型")]        public PosType[] PosTypes { get; set; }        [DisplayName("信号目标")]        public int[] EmtIds { get; set; }        [DisplayName("显示无效点")]        public bool ShowNotValidPoint { get; set; }    }}
 |