TsDataQuality.cs 436 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace IntelligentControlForsx.Service.WindturbineControl.Domain
  7. {
  8. public enum TsDataQuality
  9. {
  10. GOOD = 0,
  11. NODATA = 1,
  12. CREATED = 2,
  13. SHUTDOWN = 3,
  14. CALCOFF = 4,
  15. BAD = 5,
  16. DIVBYZERO = 6,
  17. REMOVED = 7,
  18. OPC = 256,
  19. USER = 512,
  20. }
  21. }