generated from wenjy/Sln.Iot
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
C#
37 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Sln.Iot.Model.Entity;
|
|
|
|
namespace Sln.Iot.Common
|
|
{
|
|
/// <summary>
|
|
/// 全局内存变量
|
|
/// </summary>
|
|
public class GlobalVar
|
|
{
|
|
public static DateTime OpenTime;
|
|
/// <summary>
|
|
/// 真空箱数据
|
|
/// </summary>
|
|
public static MesReportEntity Connect1Entity = new MesReportEntity() { InterfaceID = "OT00470018" };
|
|
|
|
/// <summary>
|
|
/// 烤箱数据
|
|
/// </summary>
|
|
public static MesReportEntity Connect2Entity = new MesReportEntity() { InterfaceID = "OT00470019" };
|
|
|
|
///// <summary>
|
|
///// 烤箱2数据
|
|
///// </summary>
|
|
//public static MesReportEntity Connect3Entity = new MesReportEntity() { InterfaceID = "OT00470017" };
|
|
|
|
///// <summary>
|
|
///// 提升机2数据
|
|
///// </summary>
|
|
//public static MesReportEntity Connect4Entity = new MesReportEntity() { InterfaceID = "OT00470020" };
|
|
}
|
|
}
|