first commit

This commit is contained in:
lq
2026-09-07 08:07:08 +08:00
commit e703fb2752
2488 changed files with 2784663 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
}
}