kazelee
2025-05-20 ef839d119eec2c28fac5f5ba175d71f926afae44
Models/TN_Location.cs
@@ -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,6 +77,6 @@
        /// <summary>
        /// 货架编码
        /// </summary>
        public string S_SHELF_CODE { get; set; }
        public int N_ROW { get; set; }
    }
}