终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

28 lines
735 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmartClient.IoT
  7. {
  8. /// <summary>
  9. /// 命令实体类
  10. /// </summary>
  11. public class CommandModel
  12. {
  13. /// <summary>
  14. /// 设备名称
  15. /// </summary>
  16. public string deviceName { get; set; }
  17. /// <summary>
  18. /// 命令名称:0 控制类 1 设置属性 2 通知信息类
  19. /// </summary>
  20. public int CommandName { get; set; }
  21. /// <summary>
  22. /// 命令变量:执行变量 key为属性或时间 value为值或者消息
  23. /// </summary>
  24. public Dictionary<string, string> CommandValue { get; set; }
  25. }
  26. }