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.
|
- using BPASmartClient.JXJFoodBigStation.Model.Siemens;
- using System;
- using System.Collections.Concurrent;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.JXJFoodBigStation.Model
- {
- public class GVL_BigStation
- {
- /// <summary>
- /// plc心跳上传
- /// </summary>
- public static bool HeartBeatFromPlc { get; set; }
- /// <summary>
- /// 配方下发状态 =0:配方未下发 ,1:配方下发给plc ,2:plc成功接收配方
- /// </summary>
- public static int Recipe1DosingStatus { get; set; }
- /// <summary>
- /// 配方下发状态 =0:配方未下发 ,1:配方下发给plc ,2:plc成功接收配方
- /// </summary>
- public static int Recipe2DosingStatus { get; set; }
- /// <summary>
- /// 配方下发状态 =0:配方未下发 ,1:配方下发给plc ,2:plc成功接收配方
- /// </summary>
- public static int Recipe3DosingStatus { get; set; }
- /// <summary>
- /// 配方下发状态 =0:配方未下发 ,1:配方下发给plc ,2:plc成功接收配方
- /// </summary>
- public static int Recipe4DosingStatus { get; set; }
- /// <summary>
- /// 是否处于手动下发配方
- /// </summary>
- public static bool IsUseLocalRecipe { get; set; } = false;
- /// <summary>
- /// 订单请求
- /// </summary>
- public static bool Order_Request { get; set; } = false;
- public static int SiemensSendRecipeStatus { get; set; } = 0;
-
- public const int Max_DosingSotckBinNum = 14;
- }
- }
|