| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 | using SqlSugar;using System;using System.Collections.Generic;using System.Text;namespace wms.sqlsugar.model.pt{    [Tenant("pt")]    [SugarTable("Base_SuppInfo")]    public partial class ptBaseSuppinfo : BaseModel    {        /// <summary>         /// WarehouseId        /// </summary>         [SugarColumn(ColumnDataType = "bigint", IsNullable = false)]        public long WarehouseId { get; set; }        /// <summary>         /// IsStop        /// </summary>         [SugarColumn(ColumnDataType = "int", IsNullable = false)]        public int IsStop { get; set; }        /// <summary>         /// Code        /// </summary>         [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]        public string Code { get; set; }        /// <summary>         /// Name        /// </summary>         [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false)]        public string Name { get; set; }        /// <summary>         /// Country        /// </summary>         [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]        public string Country { get; set; }        /// <summary>         /// City        /// </summary>         [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]        public string City { get; set; }        /// <summary>         /// Ctiyry        /// </summary>         [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]        public string Ctiyry { get; set; }        /// <summary>         /// ContactWho        /// </summary>         [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]        public string ContactWho { get; set; }        /// <summary>         /// PostalCode        /// </summary>         [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]        public string PostalCode { get; set; }        /// <summary>         /// Wechat        /// </summary>         [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]        public string Wechat { get; set; }        /// <summary>         /// Email        /// </summary>         [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]        public string Email { get; set; }        /// <summary>         /// Fax        /// </summary>         [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]        public string Fax { get; set; }        /// <summary>         /// Tel        /// </summary>         [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]        public string Tel { get; set; }        /// <summary>         /// Mobile        /// </summary>         [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]        public string Mobile { get; set; }        /// <summary>         /// Address        /// </summary>         [SugarColumn(ColumnDataType = "nvarchar", Length = 200, IsNullable = false)]        public string Address { get; set; }    }}
 |