12345678910111213141516171819202122232425 |
- using MessagePack;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Shaker.Model
- {
- public class SystemConfigModel:TableBase
- {
- [MessagePack.Key(1)]
- public int LoopTime = 50;
- [MessagePack.Key(2)]
- public uint RequestPermissionsTimeout = 60000;
- [Key(3)]
- public int CommunicationTimeout = 2000;
- [Key(4)]
- public string MangerTitle = "集成控制系统";
- [Key(5)]
- public string ControlTitle = "振动台控制终端";
- [Key(6)]
- public uint StartShakerTimeOut = 100;
- }
- }
|