using System; 
using System.Collections.Generic;
using SqlSugar;
namespace wms.sqlsugar.model.hj
{
    [Tenant("hj")]
    [SugarTable("Base_WareCell")]
    public partial class BaseWarecell:BaseModel
    { 
        ///  
        /// WarehouseId
        ///  
        [SugarColumn(ColumnDataType ="bigint" ,  IsNullable = false )]
        public long WarehouseId { get; set; }
        ///  
        /// 仓库编码
        ///  
        [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
        public string WarehouseCode { get; set; }
        ///  
        /// WareAreaId
        ///  
        [SugarColumn(ColumnDataType ="bigint" ,  IsNullable = false )]
        public long WareAreaId { get; set; }
        ///  
        /// IsStop
        ///  
        [SugarColumn(ColumnDataType ="int" ,  IsNullable = false )]
        public int IsStop { get; set; }
        ///  
        /// Code
        ///  
        [SugarColumn(ColumnDataType ="nvarchar" , Length = 50  , IsNullable = false )]
        public string Code { get; set; }
        ///  
        /// Name
        ///  
        [SugarColumn(ColumnDataType ="nvarchar" , Length = 100  , IsNullable = false )]
        public string Name { get; set; }
        ///  
        /// StateNum
        ///  
        [SugarColumn(ColumnDataType ="int" ,  IsNullable = false )]
        public int StateNum { get; set; }
        ///  
        /// TypeNum
        ///  
        [SugarColumn(ColumnDataType ="int" ,  IsNullable = false )]
        public int TypeNum { get; set; }
        ///  
        /// 货位大小
        ///  
        [SugarColumn(ColumnDataType ="int" , IsNullable = false )]
        public long Size { get; set; }
        ///  
        /// Row
        ///  
        [SugarColumn(ColumnDataType ="int" ,  IsNullable = false )]
        public int Row { get; set; }
        ///  
        /// Col
        ///  
        [SugarColumn(ColumnDataType ="int" ,  IsNullable = false )]
        public int Col { get; set; }
        ///  
        /// Layer
        ///  
        [SugarColumn(ColumnDataType ="int" ,  IsNullable = false )]
        public int Layer { get; set; }
        ///  
        /// Depth
        ///  
        [SugarColumn(ColumnDataType ="int" ,  IsNullable = false )]
        public int Depth { get; set; }
        ///  
        /// Tunnel
        ///  
        [SugarColumn(ColumnDataType ="int" ,  IsNullable = false )]
        public int Tunnel { get; set; }
        ///  
        /// SCRel
        ///  
        [SugarColumn(ColumnDataType ="nvarchar" , Length = 50  , IsNullable = false )]
        public string SCRel { get; set; }
        ///  
        /// ContGrpId
        ///  
        [SugarColumn(ColumnDataType ="bigint" ,  IsNullable = true )]
        public long? ContGrpId { get; set; }
        ///  
        /// ContGrpBarCode
        ///  
        [SugarColumn(ColumnDataType ="nvarchar" , Length = 50  , IsNullable = true )]
        public string ContGrpBarCode { get; set; }
        ///  
        /// Shelf
        ///  
        [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
        public string Shelf { get; set; }
        ///  
        /// Memo
        ///  
        [SugarColumn(ColumnDataType ="nvarchar" , Length = 500  , IsNullable = false )]
        public string Memo { get; set; }
        ///  
        /// AddWho
        ///  
        [SugarColumn(ColumnDataType ="nvarchar" , Length = 50  , IsNullable = false )]
        public string AddWho { get; set; }
        ///  
        /// AddTime
        ///  
        [SugarColumn(ColumnDataType ="datetime" ,  IsNullable = false )]
        public DateTime AddTime { get; set; }
        ///  
        /// EditWho
        ///  
        [SugarColumn(ColumnDataType ="nvarchar" , Length = 50  , IsNullable = false )]
        public string EditWho { get; set; }
        ///  
        /// EditTime
        ///  
        [SugarColumn(ColumnDataType ="datetime" ,  IsNullable = false )]
        public DateTime EditTime { get; set; }
    }
}