first commit

This commit is contained in:
2026-09-02 16:31:50 +08:00
commit a461727193
911 changed files with 692450 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
using JSMachine.WMS.RPC.PmsRPC.Dto.In;
namespace JSMachine.WMS.Job
{
/// <summary>
/// 进程内保存的机台备纸数据及 ACS 记录标识。
/// </summary>
public static class PlateList
{
/// <summary>
/// 各机台最近批次的备纸需求列表。
/// </summary>
public static List<List<PaperNeed>> Plates { get; set; }//记录所有机台下"前十"批的备纸数据
public static Guid SavedAcsId { get; set; }//记录第一个Id
public static List<Guid> AcsIdArray { get; set; }//记录第一个批订单下所有的Id
}
}