SystemConfigModel.cs 652 B

12345678910111213141516171819202122232425
  1. using MessagePack;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Shaker.Model
  8. {
  9. public class SystemConfigModel:TableBase
  10. {
  11. [MessagePack.Key(1)]
  12. public int LoopTime = 50;
  13. [MessagePack.Key(2)]
  14. public uint RequestPermissionsTimeout = 60000;
  15. [Key(3)]
  16. public int CommunicationTimeout = 2000;
  17. [Key(4)]
  18. public string MangerTitle = "集成控制系统";
  19. [Key(5)]
  20. public string ControlTitle = "振动台控制终端";
  21. [Key(6)]
  22. public uint StartShakerTimeOut = 100;
  23. }
  24. }