using System; using System.Collections.Generic; using SqlSugar; namespace wms.sqlsugar.model.cp { [Tenant("cp")] [SugarTable("Base_SuppInfo")] public partial class cpBaseSuppinfo : 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; } /// /// Country /// [SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = true )] public string Country { get; set; } /// /// City /// [SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = true )] public string City { get; set; } /// /// Ctiyry /// [SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = true )] public string Ctiyry { get; set; } /// /// ContactWho /// [SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = true )] public string ContactWho { get; set; } /// /// PostalCode /// [SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = true )] public string PostalCode { get; set; } /// /// Wechat /// [SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = true )] public string Wechat { get; set; } /// /// Email /// [SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = true )] public string Email { get; set; } /// /// Fax /// [SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = true )] public string Fax { get; set; } /// /// Tel /// [SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = true )] public string Tel { get; set; } /// /// Mobile /// [SugarColumn(ColumnDataType ="nvarchar" , Length = 50 , IsNullable = true )] public string Mobile { get; set; } /// /// Address /// [SugarColumn(ColumnDataType ="nvarchar" , Length = 200 , IsNullable = false )] public string Address { get; set; } } }