| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 | 
							- using System; 
 
- using System.Collections.Generic;
 
- using SqlSugar;
 
- using WMS.BZModels;
 
- namespace  wms.sqlsugar.model.cp
 
- {    
 
- 	[Tenant("cp")]
 
-     [SugarTable("Bill_MachInfo")]
 
-     public  class BillMachinfo  : BaseModel
 
-     { 
 
-         /// <summary> 
 
-         /// WarehouseId
 
-         /// </summary> 
 
-         [SugarColumn(ColumnDataType ="bigint" , IsNullable = false )]
 
-         public long WarehouseId { get; set; }
 
-         /// <summary> 
 
-         /// WareAreaId
 
-         /// </summary> 
 
-         [SugarColumn(ColumnDataType ="bigint" , IsNullable = false )]
 
-         public long WareAreaId { get; set; }
 
-         /// <summary> 
 
-         /// IsStop
 
-         /// </summary> 
 
-         [SugarColumn(ColumnDataType ="int" , IsNullable = false )]
 
-         public int IsStop { get; set; }
 
-         /// <summary> 
 
-         /// MachNo
 
-         /// </summary> 
 
-         [SugarColumn(ColumnDataType ="nvarchar" , Length = 50  , IsNullable = false )]
 
-         public string MachNo { get; set; }
 
-         /// <summary> 
 
-         /// Name
 
-         /// </summary> 
 
-         [SugarColumn(ColumnDataType ="nvarchar" , Length = 100  , IsNullable = false )]
 
-         public string Name { get; set; }
 
-         /// <summary> 
 
-         /// GrpCode
 
-         /// </summary> 
 
-         [SugarColumn(ColumnDataType ="nvarchar" , Length = 50  , IsNullable = false )]
 
-         public string GrpCode { get; set; }
 
-         /// <summary> 
 
-         /// Station
 
-         /// </summary> 
 
-         [SugarColumn(ColumnDataType ="nvarchar" , Length = 50  , IsNullable = false )]
 
-         public string Station { get; set; }
 
-         /// <summary> 
 
-         /// Direction
 
-         /// </summary> 
 
-         [SugarColumn(ColumnDataType ="nvarchar" , Length = 50  , IsNullable = false )]
 
-         public string Direction { get; set; }
 
-     }
 
- }
 
 
  |