wangxinhui
2025-11-30 f2b85c65234e0dcdd3fcce4dafbe16933b7f1b48
ÏîÄ¿´úÂë/WCSServices/WIDESEAWCS_Model/Models/BasicInfo/Dt_Warehouse.cs
@@ -9,9 +9,9 @@
namespace WIDESEAWCS_Model.Models
{
    /// <summary>
    /// ä»“库信息
    /// åº“区信息
    /// </summary>
    [SugarTable(nameof(Dt_Warehouse), "仓库信息")]
    [SugarTable(nameof(Dt_Warehouse), "库区信息")]
    public class Dt_Warehouse : BaseEntity
    {
        /// <summary>
@@ -21,31 +21,25 @@
        public int WarehouseId { get; set; }
        /// <summary>
        /// ä»“库编号
        /// åº“区编号
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "仓库编号")]
        public string WarehouseCode { get; set; }
        /// <summary>
        /// ä»“库名称
        /// åº“区名称
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "仓库名称")]
        public string WarehouseName { get; set; }
        /// <summary>
        /// ä»“库类型
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "仓库类型")]
        public string WarehouseType { get; set; }
        /// <summary>
        /// ä»“库状态
        /// åº“区状态
        /// </summary>
        [SugarColumn(IsNullable = false, DefaultValue = "0", ColumnDescription = "仓库状态")]
        public int WarehouseStatus { get; set; }
        /// <summary>
        /// ä»“库描述
        /// åº“区描述
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "仓库描述")]
        public string WarehouseDes { get; set; }