using System; 
using System.Collections.Generic;
using SqlSugar;
namespace wms.sqlsugar.model.cp
{
    [Tenant("cp")]
    [SugarTable("Base_UnitGrp")]
    public partial class cpBaseUnitgrp : BaseModel
    { 
        ///  
        /// WarehouseId
        ///  
        [SugarColumn(ColumnDataType ="bigint" ,  IsNullable = false )]
        public long WarehouseId { 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; }
        ///  
        /// PId
        ///  
        [SugarColumn(ColumnDataType ="bigint" ,  IsNullable = false )]
        public long PId { get; set; }
    }
}