From 7ca9651f81d7b84f054194d3d46fdbd1d9c8b922 Mon Sep 17 00:00:00 2001 From: dengjunjie <dengjunjie@hnkhzn.com> Date: 星期三, 09 七月 2025 22:55:27 +0800 Subject: [PATCH] 增加质检出入库逻辑 --- 项目代码/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Basic/Dt_LocationInfo.cs | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 59 insertions(+), 0 deletions(-) diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Basic/Dt_LocationInfo.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Basic/Dt_LocationInfo.cs" new file mode 100644 index 0000000..54bfc31 --- /dev/null +++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Basic/Dt_LocationInfo.cs" @@ -0,0 +1,59 @@ +锘縰sing SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using WIDESEA_Core.DB.Models; + +namespace WIDESEA_Model.Models +{ + [SugarTable(nameof(Dt_LocationInfo), "璐т綅淇℃伅")] + public class Dt_LocationInfo : BaseEntity + { + [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "涓婚敭")] + public int Id { get; set; } + + [SugarColumn(IsNullable = false, ColumnDescription = "鍖哄煙涓婚敭")] + public int AreaId { get; set; } + + [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "璐т綅缂栧彿")] + public string LocationCode { get; set; } + + [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "璐т綅鍚嶇О")] + public string LocationName { get; set; } + + [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "宸烽亾缂栧彿")] + public string RoadwayNo { get; set; } + + [SugarColumn(IsNullable = false, ColumnDescription = "璐т綅琛�")] + public int Row { get; set; } + + [SugarColumn(IsNullable = false, ColumnDescription = "璐т綅鍒�")] + public int Column { get; set; } + + [SugarColumn(IsNullable = false, ColumnDescription = "璐т綅灞�")] + public int Layer { get; set; } + + [SugarColumn(IsNullable = false, ColumnDescription = "璐т綅娣卞害")] + public int Depth { get; set; } + + [SugarColumn(IsNullable = false, ColumnDescription = "鏈�澶у簱瀛�")] + public int MaxQty { get; set; } + + [SugarColumn(IsNullable = false, ColumnDescription = "褰撳墠搴撳瓨")] + public int CurrentQty { get; set; } + + [SugarColumn(IsNullable = false, ColumnDescription = "璐т綅绫诲瀷")] + public int LocationType { get; set; } + + [SugarColumn(IsNullable = false, DefaultValue = "0", ColumnDescription = "璐т綅鐘舵��")] + public int LocationStatus { get; set; } + + [SugarColumn(IsNullable = false, DefaultValue = "0", ColumnDescription = "绂佺敤鐘舵��")] + public int EnableStatus { get; set; } + + [SugarColumn(IsNullable = true, Length = 200, ColumnDescription = "澶囨敞")] + public string Remark { get; set; } + } +} -- Gitblit v1.9.3