using System;
using System.Collections.Generic;
using SqlSugar;
namespace wms.sqlsugar.model.cp
{
[Tenant("cp")]
[SugarTable("Base_ContInfo")]
public partial class cpBaseContinfo:BaseModel
{
///
/// WarehouseId
///
[SugarColumn(ColumnDataType ="bigint" , IsNullable = false )]
public long WarehouseId { get; set; }
///
/// IsStop
///
[SugarColumn(ColumnDataType ="int" , IsNullable = false )]
public int IsStop { get; set; }
///
/// ContBarCode
///
[SugarColumn(ColumnDataType ="nvarchar" , Length = 100 , IsNullable = false )]
public string ContBarCode { get; set; }
///
/// Name
///
[SugarColumn(ColumnDataType ="nvarchar" , Length = 100 , IsNullable = false )]
public string Name { get; set; }
///
/// TypeCode
///
[SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = false )]
public string TypeCode { get; set; }
///
/// PrintQty
///
[SugarColumn(ColumnDataType ="int" , IsNullable = false )]
public int PrintQty { get; set; }
///
/// LengthQty
///
[SugarColumn(ColumnDataType ="decimal" , Length = 18, DecimalDigits = 6, IsNullable = false )]
public decimal LengthQty { get; set; }
///
/// WidthQty
///
[SugarColumn(ColumnDataType ="decimal" , Length = 18 , DecimalDigits = 6, IsNullable = false )]
public decimal WidthQty { get; set; }
///
/// HighQty
///
[SugarColumn(ColumnDataType ="decimal" , Length = 18 , DecimalDigits = 6, IsNullable = false )]
public decimal HighQty { get; set; }
///
/// WeightQty
///
[SugarColumn(ColumnDataType = "decimal", Length = 18, DecimalDigits = 6, IsNullable = false)]
public decimal WeightQty { get; set; }
}
}