From cc65e985aa4287a51a8eb0ed5d927548ec7fbacc Mon Sep 17 00:00:00 2001 From: hehaibing-1996 Date: Wed, 15 May 2024 18:39:07 +0800 Subject: [PATCH] =?UTF-8?q?=E5=87=BA=E5=BA=93=E5=8D=95=E6=8D=AE=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E8=B4=A7=E6=9E=B6=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WCS.BLL/DbModels/OutOrder.cs | 9 ++++++++- WCS.Model/ApiModel/OutStore/OutOrderModel.cs | 6 ++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/WCS.BLL/DbModels/OutOrder.cs b/WCS.BLL/DbModels/OutOrder.cs index 7075211..ae62913 100644 --- a/WCS.BLL/DbModels/OutOrder.cs +++ b/WCS.BLL/DbModels/OutOrder.cs @@ -50,7 +50,14 @@ namespace WCS.BLL.DbModels /// 单据同步类型 /// [SugarColumn(ColumnName = "sync_type",IsNullable = false, ColumnDescription = "单据同步类型:ByMatCode,ByMatSn")] - public SyncTypeEnum SyncType { get; set; } + public SyncTypeEnum SyncType { get; set; } + + + /// + /// 单据货架类型 : 单灯单据还是货架单据 + /// + [SugarColumn(ColumnName = "shelf_type", IsNullable = false, ColumnDescription = "货架类型 是信息化货架还是智能货架")] + public ShelfTypeEnum ShelfType { get; set; } /// /// 创建时间 diff --git a/WCS.Model/ApiModel/OutStore/OutOrderModel.cs b/WCS.Model/ApiModel/OutStore/OutOrderModel.cs index f46bbfc..63cd9de 100644 --- a/WCS.Model/ApiModel/OutStore/OutOrderModel.cs +++ b/WCS.Model/ApiModel/OutStore/OutOrderModel.cs @@ -62,4 +62,10 @@ namespace WCS.Model.ApiModel.OutStore ByMatCode = 0, ByMatSn = 1 } + + public enum ShelfTypeEnum + { + SmartShelf = 0, + SingleLightShelf = 1 + } }