DxSigItem.cs 790 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Ips.Library.Entity
  7. {
  8. public class DxSigItem
  9. {
  10. public DxSigItem()
  11. {
  12. }
  13. public DxSigItem(long fc,double bandwidth,long fs, int mod)
  14. {
  15. Bandwidth = bandwidth;
  16. Fs = fs;
  17. Fc = fc;
  18. Mod = mod;
  19. }
  20. /// <summary>
  21. /// 带宽 Hz
  22. /// </summary>
  23. public double Bandwidth { get; set; }
  24. public long Fs { get; set; }
  25. /// <summary>
  26. /// mod
  27. /// </summary>
  28. public int Mod { get; set; }
  29. /// <summary>
  30. /// 频偏移 Hz
  31. /// </summary>
  32. public long Fc { get; set; }
  33. }
  34. }