From eb0ad83719de660e5c4f7676aea4710625b6bd51 Mon Sep 17 00:00:00 2001 From: Rodney Chen <rodney.chen@hotmail.com> Date: 星期四, 19 十二月 2024 21:55:43 +0800 Subject: [PATCH] WMS增加标准上下架功能事务 --- Tiger.Model.Net/Entitys/WMS/Api/BaseInput.cs | 17 +++++++++++++++++ 1 files changed, 17 insertions(+), 0 deletions(-) diff --git a/Tiger.Model.Net/Entitys/WMS/Api/BaseInput.cs b/Tiger.Model.Net/Entitys/WMS/Api/BaseInput.cs index 8742361..65e384d 100644 --- a/Tiger.Model.Net/Entitys/WMS/Api/BaseInput.cs +++ b/Tiger.Model.Net/Entitys/WMS/Api/BaseInput.cs @@ -50,4 +50,21 @@ { public bool IsItemCodeList { get; set; } } + + public class ScanShelfInfo + { + public string WarehouseCode { get; set; } + public string RegionCode { get; set; } + public string ShelfCode { get; set; } + public string LocationCode { get; set; } + public string RackCode => ShelfCode; + public bool IsSmartRack { get; set; } + public decimal Capacity { get; set; } + public int LotCount { get; set; } + public decimal MaxSize { get; set; } + public int ShelfType { get; set; } + public bool IsScanShelf { get; set; } + public WMS_SHELF Shelf { get; set; } + public WMS_LOCATION Location { get; set; } + } } \ No newline at end of file -- Gitblit v1.9.3