From 5dd2857a919b74735c86492ef39e0c7158572298 Mon Sep 17 00:00:00 2001 From: FanLian Date: Thu, 13 Jul 2023 10:54:05 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E9=99=A4=E9=97=AE=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Dto/Inputs/MESKittingOutStkInput.cs | 34 +++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/WarehouseMgr/Tnb.WarehouseMgr.Entities/Dto/Inputs/MESKittingOutStkInput.cs b/WarehouseMgr/Tnb.WarehouseMgr.Entities/Dto/Inputs/MESKittingOutStkInput.cs index 4382e398..6136d12c 100644 --- a/WarehouseMgr/Tnb.WarehouseMgr.Entities/Dto/Inputs/MESKittingOutStkInput.cs +++ b/WarehouseMgr/Tnb.WarehouseMgr.Entities/Dto/Inputs/MESKittingOutStkInput.cs @@ -14,7 +14,7 @@ namespace Tnb.WarehouseMgr.Entities.Dto.Inputs /// /// 所属组织ID /// - public string? org_id { get; set; } + public string org_id { get; set; } /// /// 出库单创建日期 @@ -34,37 +34,37 @@ namespace Tnb.WarehouseMgr.Entities.Dto.Inputs /// /// 库位ID /// - public string? location_id { get; set; } + public string location_id { get; set; } /// /// 库位编号 /// - public string? location_code { get; set; } + public string location_code { get; set; } /// /// 载具ID /// - public string? carry_id { get; set; } + public string carry_id { get; set; } /// /// 载具编号 /// - public string? carry_code { get; set; } + public string carry_code { get; set; } /// /// 产品ID /// - public string? material_id { get; set; } + public string material_id { get; set; } /// /// 产品编号 /// - public string? material_code { get; set; } + public string material_code { get; set; } /// /// 齐套搭配方案ID /// - public string? collocation_scheme_id { get; set; } + public string collocation_scheme_id { get; set; } /// /// 齐套搭配方案编号 @@ -74,7 +74,7 @@ namespace Tnb.WarehouseMgr.Entities.Dto.Inputs /// /// 来源单据ID /// - public string? source_id { get; set; } + public string source_id { get; set; } /// @@ -85,12 +85,12 @@ namespace Tnb.WarehouseMgr.Entities.Dto.Inputs /// /// 创建用户ID /// - public string? create_id { get; set; } + public string create_id { get; set; } /// /// MES齐套出库明细表输入 /// - public List? wmsKittingoutDs { get; set; } + public List wmsKittingoutDs { get; set; } } /// @@ -108,33 +108,33 @@ namespace Tnb.WarehouseMgr.Entities.Dto.Inputs /// /// 单位编号 /// - public string? unit_code { get; set; } + public string unit_code { get; set; } /// /// 产品ID /// - public string? material_id { get; set; } + public string material_id { get; set; } /// /// 产品编号 /// - public string? material_code { get; set; } + public string material_code { get; set; } /// /// 批次 /// - public string? code_batch { get; set; } + public string code_batch { get; set; } /// /// 数量(件数) /// - public decimal? pr_qty { get; set; } + public decimal pr_qty { get; set; } /// /// 箱数 /// - public int? box { get; set; } + public int box { get; set; } } }