From 77bc431c4bc308fa12bf81c0af16a5819c1e4a44 Mon Sep 17 00:00:00 2001 From: 南骏 池 <chiffly@163.com> Date: 星期一, 08 九月 2025 00:42:01 +0800 Subject: [PATCH] 1.现场收料查询转换为存储过程 2.生产领料新增工单信息 --- Dto/service/Material.cs | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/Dto/service/Material.cs b/Dto/service/Material.cs index eca3b72..fbdf223 100644 --- a/Dto/service/Material.cs +++ b/Dto/service/Material.cs @@ -3,10 +3,18 @@ public class Material { public string? FMaterialId { get; set; } + public string? FUintId { get; set; } + public decimal? FActReceiveQty { get; set; } public string? FStockId { get; set; } - public string? FsrcEntryId { get; set; } + public DateTime? FPreDeliveryDate { get; set; } + public Guid? F_MES_ENTRYID { get; set; } + public Guid? FSRCENTRYGuid { get; set; } public string? FLot { get; set; } + public string? FRMREALQTY { get; set; } + public string? FUINT { get; set; } + + public string? FsrcEntryId { get; set; } public string? FRealQty { get; set; } -- Gitblit v1.9.3