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(max)", 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; }
///
/// Sku编码
///
[SugarColumn(ColumnName = "SkuCode", ColumnDataType = "nvarchar", IsNullable = true, Length = 100)]
public string SkuCode { get; set; }
///
/// 装箱规则
///
[SugarColumn(ColumnName = "PackRule", ColumnDataType = "nvarchar", IsNullable = true, Length = 50)]
public string PackRule { get; set; }
}
}