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.
 
 

44 lines
1.2 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace HBLConsole.Model
  7. {
  8. /// <summary>
  9. /// 下发至Plc设备参数实体
  10. /// </summary>
  11. public class DistributePlcPar
  12. {
  13. /***屏蔽煮面口**/
  14. public bool HideNoodleNo1 { get; set; }
  15. public bool HideNoodleNo2 { get; set; }
  16. public bool HideNoodleNo3 { get; set; }
  17. public bool HideNoodleNo4 { get; set; }
  18. public bool HideNoodleNo5 { get; set; }
  19. public bool HideNoodleNo6 { get; set; }
  20. /***冷库转盘当前位置***/
  21. public int CurrentTurnPosition { get; set; }
  22. /***煮面口时间设定**/
  23. public int No1_Minute { get; set; }
  24. public int No1_Second { get; set; }
  25. public int No2_Minute { get; set; }
  26. public int No2_Second { get; set; }
  27. public int No3_Minute { get; set; }
  28. public int No3_Second { get; set; }
  29. public int No4_Minute { get; set; }
  30. public int No4_Second { get; set; }
  31. public int No5_Minute { get; set; }
  32. public int No5_Second { get; set; }
  33. public int No6_Minute { get; set; }
  34. public int No6_Second { get; set; }
  35. }
  36. }