using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JiShe.CollectBus.Common.Enums { public enum TimestampUnit { Seconds, // 秒级(Unix 时间戳) Milliseconds, // 毫秒级(默认) Microseconds, // 微秒级 Nanoseconds // 纳秒级 } }