using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DW5S.Entity { public class AdChannel : BaseEntity { /// /// 采集卡编号 /// public int AdCardID { get; set; } /// /// 通道号 /// public int ChNum { get; set; } /// /// 中心频点(MHz) /// public double CenterFreq { get; set; } /// /// 卫星编号 /// public int SatInfoID { get; set; } /// /// 天线编号 /// public int TxInfoID { get; set; } /// /// 通道启用状态 /// public bool Enable { get; set; } } }