using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace wms.sqlsugar.model.pt { [Tenant("pt")] [SugarTable("Bill_MachInfo")] public partial class ptBillMachinfo : BaseModel { /// /// 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; } } }