初始版本

Signed-off-by: ldw <11622064+ldw888@user.noreply.gitee.com>
This commit is contained in:
ldw
2025-07-16 18:08:40 +08:00
commit 223e1bb7d1
283 changed files with 116561 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JinYuan.MES.Enums
{
/// <summary>
///
/// </summary>
public enum MesResType
{
[Description("停线")]
A = 1,
[Description("排出")]
B = 2,
[Description("警示")]
C = 3,
[Description("OK值")]
D = 4,
[Description("未知的结果")]
UnKnow = 99999
}
}
+33
View File
@@ -0,0 +1,33 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JinYuan.MES.Enums
{
/// <summary>
/// MES上传的三种类型
/// </summary>
public enum MesUploadType
{
/// <summary>
/// 单进整出
/// </summary>
[Description("DZ")]
DZ = 1,
/// <summary>
/// 整进整出
/// </summary>
[Description("ZZ")]
ZZ = 2,
/// <summary>
/// 单进单出
/// </summary>
[Description("DD")]
DD = 3,
}
}