FrqCenterMode.cs 387 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Ips.Library.Entity
  8. {
  9. public enum FrqCenterMode
  10. {
  11. [Description("不固定")]
  12. NotFix,
  13. [Description("固定不控")]
  14. FixNotCtrl,
  15. [Description("固定可控")]
  16. FixCtrl
  17. }
  18. }