Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace TestDemo
- {
- public class PlcToComputer
- {
- /// <summary>
- /// 心跳
- /// </summary>
- public bool Heartbeat { get; set; }
-
- /// <summary>
- /// 接收完成
- /// </summary>
- public bool ResComplete { get; set; }
-
- /// <summary>
- /// 系统系统或停止
- /// </summary>
- public bool SystemStartOrStop { get; set; }
-
- /// <summary>
- /// 手自动切换
- /// </summary>
- public bool HandOrAuto { get; set; }
-
- /// <summary>
- /// 桶位置反馈
- /// </summary>
- public short[] LocationFeedback { get; set; } = new short[32];
-
- /// <summary>
- /// 是否允许配料
- /// </summary>
- public bool[] IsAllowIngredients { get; set; } = new bool[32];
-
- /// <summary>
- /// 报警信息
- /// </summary>
- public bool[] ArrayInfo { get; set; } = new bool[32];
- }
- }
|