using DS.Module.Core.Data; namespace DS.WMS.Core.System.Entity; /// /// 租户实体 /// [SqlSugar.SugarTable("sys_tenant")] public class SysTenant : BaseModel { /// /// 名称 /// public string Name { get; set; } /// /// 编码 /// public string Code { get; set; } /// /// 电话 /// public string Phone { get; set; } /// /// 邮箱 /// public string Email { get; set; } /// /// 数据库类型 /// public int? DbType { get; set; } /// /// 租户类型 /// public int? TenantType { get; set; } /// /// 数据库链接 /// public string Connection { get; set; } }