using System; using System.Collections.Generic; using SqlSugar; namespace wms.sqlsugar.model.hj { [Tenant("hj")] [SugarTable("Bill_MachInfo")] public partial class BillMachinfo { /// /// WarehouseId /// [SugarColumn(ColumnDataType ="bigint" , IsNullable = false )] public long WarehouseId { get; set; } /// /// WareAreaId /// [SugarColumn(ColumnDataType ="bigint" , IsNullable = false )] public long WareAreaId { get; set; } /// /// IsStop /// [SugarColumn(ColumnDataType ="int" , IsNullable = false )] public int IsStop { get; set; } /// /// MachNo /// [SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = false )] public string MachNo { get; set; } /// /// Name /// [SugarColumn(ColumnDataType ="nvarchar" , Length = 100 , IsNullable = false )] public string Name { get; set; } /// /// GrpCode /// [SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = false )] public string GrpCode { get; set; } /// /// Station /// [SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = false )] public string Station { get; set; } /// /// Direction /// [SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = false )] public string Direction { get; set; } } }