using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace wms.sqlsugar.model.pt
{
    [Tenant("pt")]
    [SugarTable("Base_Warehouse", "仓库表")]
    public class ptBaseWarehouse : BaseModel
    {
        ///  
        /// 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; }
        ///  
        /// TypeNum
        ///  
        [SugarColumn(ColumnDataType = "int", IsNullable = false)]
        public int TypeNum { get; set; }
        ///  
        /// ConfigId
        ///  
        [SugarColumn(ColumnDataType = "bigint", IsNullable = false)]
        public long ConfigId { get; set; }
    }
}