tangxu
2024-06-11 e08f18c84c96ca794407f4fcb737b26fa76c0a1f
Calc/IStation.Calc.Model/AnaPrj.cs
@@ -28,7 +28,23 @@
                }
            }
        }
        public List<AnaPrjPointTime> GetAllPointTimeList()
        {
            List < AnaPrjPointTime >  list = new List<AnaPrjPointTime>();
            if (this.BlockTimes != null)
            {
                foreach (var bt in this.BlockTimes)
                {
                     if(bt.PointTimes  != null)
                    {
                        list.AddRange(bt.PointTimes);
                    }
                }
            }
            return list;
        }
        public DateTime StartTime { get; set; }
        public DateTime EndTime { get; set; }