| 1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ips.Library.Entity
- {
- public class DxSigItem
- {
- public DxSigItem()
- {
- }
- public DxSigItem(long fc,double bandwidth,long fs, int mod)
- {
- Bandwidth = bandwidth;
- Fs = fs;
- Fc = fc;
- Mod = mod;
- }
- /// <summary>
- /// 带宽 Hz
- /// </summary>
- public double Bandwidth { get; set; }
- public long Fs { get; set; }
- /// <summary>
- /// mod
- /// </summary>
- public int Mod { get; set; }
- /// <summary>
- /// 频偏移 Hz
- /// </summary>
- public long Fc { get; set; }
-
- }
- }
|