TimerOperate.cs 374 B

12345678910111213141516
  1. using SHJX.Service.Control.PortOperate.Interface;
  2. using SHJX.Service.ServerClient;
  3. namespace SHJX.Service.Control.PortOperate
  4. {
  5. public class TimerOperate : StorageOperateImp
  6. {
  7. /// <summary>
  8. /// 计时器
  9. /// </summary>
  10. public TimerOperate(OptClient client) : base(client)
  11. {
  12. OpName = "Timer";
  13. }
  14. }
  15. }