| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 | 
							- using System;
 
- using System.Collections.Generic;
 
- using SqlSugar;
 
- using WMS.BZModels;
 
- namespace wms.sqlsugar.model.fj
 
- {
 
-     [Tenant("fj")]
 
-     [SugarTable("Base_Warehouse")]
 
-     public partial class BaseWarehouse:BaseModel
 
-     {
 
-        
 
-         /// <summary> 
 
-         /// IsStop
 
-         /// </summary> 
 
-         [SugarColumn(ColumnDataType ="int" ,  IsNullable = false)]
 
-         public int IsStop { get; set; }
 
-         /// <summary> 
 
-         /// Code
 
-         /// </summary> 
 
-         [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
 
-         public string Code { get; set; }
 
-         /// <summary> 
 
-         /// Name
 
-         /// </summary> 
 
-         [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false)]
 
-         public string Name { get; set; }
 
-         /// <summary> 
 
-         /// TypeNum
 
-         /// </summary> 
 
-         [SugarColumn(ColumnDataType ="int" ,  IsNullable = false)]
 
-         public int TypeNum { get; set; }
 
-         /// <summary> 
 
-         /// ConfigId
 
-         /// </summary> 
 
-         [SugarColumn(ColumnDataType = "bigint", IsNullable = false)]
 
-         public long ConfigId { get; set; }
 
-       
 
-     }
 
- }
 
 
  |