| 123456789101112131415161718192021222324252627282930313233 | using System;using System.Collections.Generic;using System.ComponentModel;using System.Linq;using System.Text;using System.Threading.Tasks;namespace Ips.Sps.Tools.TdmaCgs{    public class TdmaSlot    {        [DisplayName("突发时间")]        public DateTime SlotTime { get; set; }        [DisplayName("突发纳米(ns)")]        public int SlotTimeNs { get; set; }        [DisplayName("突发时长(ns)")]        public long TimeLenNs { get; set; }        [DisplayName("信号频点(Hz)")]        public long FreqPoint { get; set; }        [DisplayName("符号速率(Hz)")]        public int Rate { get; set; }        [DisplayName("用户ID")]        public string UserId { get; set; }        [DisplayName("MAC地址")]        public string MacAddr { get; set; }    }}
 |