using System; using System.Collections.Generic; using SqlSugar; using WMS.BZModels; namespace wms.sqlsugar.model.hj { [Tenant("hj")] [SugarTable("Bill_DocsInfo")] public partial class BillDocsinfo: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; } /// /// TypeNum /// [SugarColumn(ColumnDataType = "int", IsNullable = false)] public int TypeNum { get; set; } /// /// StateNum /// [SugarColumn(ColumnDataType = "int", IsNullable = false)] public int StateNum { get; set; } /// /// JsonContent /// [SugarColumn(ColumnDataType = "nvarchar", Length = 4000, 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; } } }