using System; using System.Collections.Generic; using SqlSugar; namespace wms.sqlsugar.model.fj { [Tenant("fj")] [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 = 5000, 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; } /// /// BomCode(投料信息) /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)] public string BomCode { get; set; } /// /// 帘线物料编码 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)] public string ProMaterCode { get; set; } /// /// 垛型编码 /// [SugarColumn(ColumnName = "SetGrpCode", ColumnDataType = "nvarchar", Length = 50)] public string SetGrpCode { get; set; } /// /// 生产订单号 /// [SugarColumn(ColumnName = "WorkOrder", ColumnDataType = "nvarchar", Length = 50)] public string WorkOrder { get; set; } } }