//============================================================== // Copyright (C) 2020 Inc. All rights reserved. // //============================================================== // Create by 种道洋 at 2020/9/21 15:04:04. // Version 1.0 // 种道洋 //============================================================== using System; using System.Collections.Generic; using System.Text; namespace DBRuntime.His { /// /// /// public class ManualHisDataMemoryBlock: HisDataMemoryBlock { #region ... Variables ... #endregion ...Variables... #region ... Events ... #endregion ...Events... #region ... Constructor... /// /// /// /// public ManualHisDataMemoryBlock(int size):base(size) { } #endregion ...Constructor... #region ... Properties ... /// /// /// public DateTime Time { get; set; } /// /// /// public DateTime EndTime { get; set; } /// /// /// public int CurrentCount { get; set; } /// /// /// public int MaxCount { get; set; } /// /// 时间存储单位,ms /// public int TimeUnit { get; set; } #endregion ...Properties... #region ... Methods ... #endregion ...Methods... #region ... Interfaces ... #endregion ...Interfaces... } }