DeviceScheduledTaskDto.cs 533 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace IoTIntegrationPlatform.Model.Dto
  7. {
  8. /// <summary>
  9. /// 设备定时任务
  10. /// </summary>
  11. public class DeviceScheduledTaskDto
  12. {
  13. /// <summary>
  14. /// 任务类型 1:定时 2:延时 3:循环定时
  15. /// </summary>
  16. public int TaskType { get; set; }
  17. /// <summary>
  18. /// 数量
  19. /// </summary>
  20. public int Count { get; set; }
  21. }
  22. }