终端一体化运控平台
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

33 righe
793 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.JXJFoodSmallStation.Model
  7. {
  8. public class VarMonitor
  9. {
  10. /// <summary>
  11. /// 序号
  12. /// </summary>
  13. public int SerialNum { get; set; }
  14. /// <summary>
  15. /// 变量地址
  16. /// </summary>
  17. public string Address { get; set; }
  18. /// <summary>
  19. /// 变量描述
  20. /// </summary>
  21. public string Describe { get; set; }
  22. /// <summary>
  23. /// 变量值当前值
  24. /// </summary>
  25. public string NowValue { get; set; }
  26. /// <summary>
  27. /// 变量值设定值
  28. /// </summary>
  29. public string SetValue { get; set; }
  30. }
  31. }