chore: initial commit

This commit is contained in:
XingCheng3
2026-05-29 09:34:04 +08:00
commit 78ae9dcd2e
683 changed files with 68110 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MisDataSaveDate.MOM
{
/// <summary>
/// 缓存位置查询
/// </summary>
public class MaterialPosition
{
/// <summary>
/// 请求ID
/// </summary>
public string requestId { get; set; }
/// <summary>
/// 工序
/// </summary>
public string process { get; set; }
}
public class MaterialPositionInfo
{
/// <summary>
/// 工序编号
/// </summary>
public string processNo { get; set; }
/// <summary>
/// 位置编号
/// </summary>
public string locationNo { get; set; }
/// <summary>
/// 空位置数量编号
/// </summary>
public string emptySlots { get; set; }
}
}