1234567891011121314151617181920212223242526272829303132333435363738 |
- using DW5S.Entity;
- using System.ComponentModel.DataAnnotations;
- namespace DW5S.ViewModel
- {
- public class AdChannelViewModel : BaseViewModel<int>
- {
- public AdChannelViewModel() : base()
- {
- this.Enable = true;
- }
- [Display(Name = "站点编号", AutoGenerateField = false)]
- public int AdCardID { get; set; }
- /// <summary>
- /// 通道号
- /// </summary>
- [Display(Name = "通道号")]
- public int ChNum { get; set; }
- /// <summary>
- /// 中心频点(MHz)
- /// </summary>
- [Display(Name = "中心频点(MHz)")]
- public double CenterFreq { get; set; }
- [Display(Name = "对应卫星")]
- public int SatInfoID { get; set; }
-
- [Display(Name = "对应天线")]
- public int TxInfoID { get; set; }
- [Display(Name = "通道启用状态")]
- public bool Enable { get; set; }
- }
- }
|