kazelee
2025-05-21 a8627a98b82d2364cbe849ca746e72fbab9916e5
Models/TN_Location.cs
@@ -1,7 +1,7 @@
using SqlSugar;
using System.Collections.Generic;
namespace HH.WCS.Mobox3.AnGang.Models {
namespace HH.WCS.Mobox3.AnGang.models {
    [SugarTable("TN_Location")]
    public class TN_Location : BaseModel {
@@ -13,7 +13,7 @@
        /// <summary>
        /// 货位名称
        /// </summary>
        public string S_NAME { get; set; }
        public string S_NAME { get; set; } = "";
        /// <summary>
        /// 货位所在区域 ID
@@ -23,7 +23,7 @@
        /// <summary>
        /// 国自 AGV 对应的库位名称
        /// </summary>
        public string S_AGV_SITE { get; set; }
        public string S_AGV_SITE { get; set; } = "";
        /// <summary>
        /// 货位容量
@@ -58,7 +58,7 @@
        /// <summary>
        /// 锁的来源-任务号
        /// </summary>
        public string S_LOCK_OP { get; set; }
        public string S_LOCK_OP { get; set; } = "";
        [Navigate(NavigateType.OneToMany, nameof(TN_Loc_Container.S_LOC_CODE))]
        public List<TN_Loc_Container> LocCntrRels { get; set; }
@@ -77,11 +77,6 @@
        /// <summary>
        /// 货架编码
        /// </summary>
        public string S_SHELF_CODE { get; set; }
        /// <summary>
        /// 货位高度
        /// </summary>
        public int N_HEIGHT { get; set; }
        public int N_ROW { get; set; }
    }
}