TODO 上传结果参数给MES

This commit is contained in:
liming 蔡
2026-07-17 20:21:57 +08:00
parent 682de34ff5
commit 1ff8f70bcb
10 changed files with 321 additions and 52 deletions
+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 JY.Model.Enums
{
/// <summary>
/// 结果类型
/// </summary>
public enum EnumResultType
{
/// <summary>
/// 全部
/// </summary>
[Description("全部")]
All = 0,
/// <summary>
/// OK
/// </summary>
[Description("OK")]
OK = 1,
/// <summary>
/// NG
/// </summary>
[Description("NG")]
NG = 2
}
}