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
+29
View File
@@ -0,0 +1,29 @@
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 EnumSearchType
{
/// <summary>
/// 查询进站数据
/// </summary>
[Description("查询进站数据")]
ArrivalStation = 0,
[Description("查询出站数据")]
ExitStation = 1,
//[Description("查询结果数据")]
//ProductResult = 2,
//None = 3,
}
}