using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace wms.sqlsugar.model.pt { [Tenant("pt")] [SugarTable("Bill_DocsInfo")] public partial class ptBillDocsinfo : BaseModel { /// /// IsStop /// [SugarColumn(ColumnDataType = "int", IsNullable = false)] public int IsStop { get; set; } /// /// WarehouseId /// [SugarColumn(ColumnDataType = "bigint", IsNullable = false)] public long WarehouseId { get; set; } /// /// ReqNo /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)] public string ReqNo { get; set; } /// /// DocsNo /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)] public string DocsNo { get; set; } /// /// Type /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)] public string Type { get; set; } /// /// StateNum /// [SugarColumn(ColumnDataType = "int", IsNullable = false)] public int StateNum { get; set; } /// /// JsonContent /// [SugarColumn(ColumnDataType = "nvarchar", IsNullable = true)] public string JsonContent { get; set; } /// /// DownQty /// [SugarColumn(ColumnDataType = "int", IsNullable = false)] public int DownQty { get; set; } /// /// DownErrReason /// [SugarColumn(ColumnDataType = "nvarchar", Length = 500, IsNullable = true)] public string DownErrReason { get; set; } } }