From 70f22c9c06c7dfe2a2a83c0d2fcc79892dba7d8f Mon Sep 17 00:00:00 2001 From: hutongqing <hutongqing@hnkhzn.com> Date: 星期三, 18 十二月 2024 17:08:29 +0800 Subject: [PATCH] 1 --- 代码管理/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Basic/Dt_LocationInfo.cs | 51 +++++++++++++++++++++++++++++++++++++++++++++------ 1 files changed, 45 insertions(+), 6 deletions(-) diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Basic/Dt_LocationInfo.cs" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Basic/Dt_LocationInfo.cs" index ec5e4e9..b431c5d 100644 --- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Basic/Dt_LocationInfo.cs" +++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Basic/Dt_LocationInfo.cs" @@ -8,49 +8,88 @@ namespace WIDESEA_Model.Models { + /// <summary> + /// 璐т綅淇℃伅 + /// </summary> [SugarTable(nameof(Dt_LocationInfo), "璐т綅淇℃伅")] public class Dt_LocationInfo : BaseEntity, BaseWarehouseEntity { + /// <summary> + /// 涓婚敭 + /// </summary> [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "涓婚敭")] public int Id { get; set; } + /// <summary> + /// 浠撳簱缂栧彿 + /// </summary> + [SugarColumn(IsNullable = false, ColumnDescription = "浠撳簱缂栧彿")] + public int WarehouseId { get; set; } + + /// <summary> + /// 璐т綅缂栧彿 + /// </summary> [SugarColumn(IsNullable = true, Length = 20, ColumnDescription = "璐т綅缂栧彿")] public string LocationCode { get; set; } + /// <summary> + /// 璐т綅鍚嶇О + /// </summary> [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "璐т綅鍚嶇О")] public string LocationName { get; set; } + /// <summary> + /// 宸烽亾缂栧彿 + /// </summary> [SugarColumn(IsNullable = true, Length = 20, ColumnDescription = "宸烽亾缂栧彿")] public string RoadwayNo { get; set; } + /// <summary> + /// 璐т綅琛� + /// </summary> [SugarColumn(IsNullable = true, ColumnDescription = "璐т綅琛�")] public int Row { get; set; } + /// <summary> + /// 璐т綅鍒� + /// </summary> [SugarColumn(IsNullable = true, ColumnDescription = "璐т綅鍒�")] public int Column { get; set; } + /// <summary> + /// 璐т綅灞� + /// </summary> [SugarColumn(IsNullable = true, ColumnDescription = "璐т綅灞�")] public int Layer { get; set; } + /// <summary> + /// 璐т綅娣卞害 + /// </summary> [SugarColumn(IsNullable = true, ColumnDescription = "璐т綅娣卞害")] public int Depth { get; set; } - //[SugarColumn(IsNullable = false, ColumnDescription = "宸︿晶/鍙充晶")] - //public int LocationSide { get; set; } - + /// <summary> + /// 璐т綅绫诲瀷 + /// </summary> [SugarColumn(IsNullable = true, ColumnDescription = "璐т綅绫诲瀷")] public int LocationType { get; set; } + /// <summary> + /// 璐т綅鐘舵�� + /// </summary> [SugarColumn(IsNullable = true, DefaultValue = "0", ColumnDescription = "璐т綅鐘舵��")] public int LocationStatus { get; set; } + /// <summary> + /// 绂佺敤鐘舵�� + /// </summary> [SugarColumn(IsNullable = true, DefaultValue = "0", ColumnDescription = "绂佺敤鐘舵��")] public int EnableStatus { get; set; } + /// <summary> + /// 澶囨敞 + /// </summary> [SugarColumn(IsNullable = true, Length = 200, ColumnDescription = "澶囨敞")] public string Remark { get; set; } - - - public int WarehouseId { get ; set ; } } } -- Gitblit v1.9.3