|  |  | 
 |  |  |  | 
 |  |  | namespace WIDESEA_Model.Models | 
 |  |  | { | 
 |  |  |     /// <summary> | 
 |  |  |     /// ä»åºä¿¡æ¯ | 
 |  |  |     /// </summary> | 
 |  |  |     [SugarTable(nameof(Dt_Warehouse), "ä»åºä¿¡æ¯")] | 
 |  |  |     public class Dt_Warehouse : BaseEntity | 
 |  |  |     { | 
 |  |  |         /// <summary> | 
 |  |  |         /// ä¸»é® | 
 |  |  |         /// </summary> | 
 |  |  |         [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主é®")] | 
 |  |  |         public int Id { get; set; } | 
 |  |  |         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; } | 
 |  |  |  | 
 |  |  |         /// <summary> | 
 |  |  |         /// å¤æ³¨ | 
 |  |  |         /// </summary> | 
 |  |  |         [SugarColumn(IsNullable = true, Length = 200, ColumnDescription = "夿³¨")] | 
 |  |  |         public string Remark { get; set; } | 
 |  |  |     } |