25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using BPASmartClient.JXJFoodBigStation.Model.HK_PLC;
- 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; }
- public static bool Order_Cancel { get; set; }
-
- public static string Order_CancelRecipeCode { get; set; } = "";
- public static DateTime DosingRecipe1Time { get; set; }
- public static DateTime DosingRecipe2Time { get; set; }
- public static DateTime DosingRecipe3Time { get; set; }
- public static DateTime DosingRecipe4Time { get; set; }
- /// <summary>
- /// plc心跳下发
- /// </summary>
- public static bool HeartBeatToPlc { 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;
-
- public static ushort AGVPutTray { get; set; }
- public static ushort AGVGetTray { get; set; }
-
- public static ushort TraySensor { get; set; }
- public static ushort TrayCylinder { get; set; }
-
- public static DB_Read HKPlc_Read = new DB_Read();
- public static bool IsUseLocalName { get; set; } = true;
-
- public static bool IsAllowHKPlcConnect { get; set; }
- public static bool IsAllowSiemensConnect { get; set; }
- /// <summary>
- /// 海科plc初始化完成标志
- /// </summary>
- public static bool HKPlcInitComple { get; set; }
- /// <summary>
- /// 西门子plc初始化完成标志
- /// </summary>
- public static bool SiemensInitComple { get; set; }
-
- /// <summary>
- ///
- /// </summary>
- public static bool Recipe1DosingFinish { get; set; } = false;
- public static bool Recipe2DosingFinish { get; set; } = false;
- public static bool Recipe3DosingFinish { get; set; } = false;
- public static bool Recipe4DosingFinish { get; set; } = false;
-
- /// <summary>
- /// 订单是否是洗桶
- /// </summary>
- public static bool Order_IsWashingBarrel { get; set; } = false;
- }
- }
|