init: 潍柴发动机线 中央控制程序 项目首次入库
This commit is contained in:
48
SCADA/MES_A95/MIS_Statement.cs
Normal file
48
SCADA/MES_A95/MIS_Statement.cs
Normal file
@@ -0,0 +1,48 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DC_A95.MES_A95
|
||||
{
|
||||
public class OptFlag
|
||||
{
|
||||
public static int AddNew = 1;
|
||||
public static int Modify = 2;
|
||||
public static int Delete = 3;
|
||||
|
||||
}
|
||||
public class PassAttr
|
||||
{
|
||||
//真的是:4-进站,1-出站,5-上在制
|
||||
public static int OPStart = 4;
|
||||
public static int OPEnd = 1;
|
||||
}
|
||||
public class PlanExec_State
|
||||
{
|
||||
//1-未开始,2-已上线
|
||||
public static int Waiting = 1;
|
||||
public static int HasExec = 2;
|
||||
}
|
||||
public class TaskTypeInfo
|
||||
{
|
||||
public short TaskTypeID;
|
||||
|
||||
public string TaskTypeName;
|
||||
|
||||
public int QCDataCount;
|
||||
|
||||
public string DataName1;
|
||||
public string DataUnit1;
|
||||
|
||||
public string DataName2;
|
||||
public string DataUnit2;
|
||||
|
||||
public string DataName3;
|
||||
public string DataUnit3;
|
||||
|
||||
public string DataName4;
|
||||
public string DataUnit4;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user