using Furion.DatabaseAccessor; using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; namespace Ewide.Core { /// /// 租户表 /// [Table("sys_tenant")] [Comment("租户表")] public class SysTenant : DEntityBase, IEntity { /// /// 名称 /// [Comment("名称")] public string Name { get; set; } /// /// 主机 /// [Comment("主机")] public string Host { get; set; } /// /// 电子邮箱 /// [Comment("电子邮箱")] public string Email { get; set; } /// /// 电话 /// [Comment("电话")] public string Phone { get; set; } /// /// 数据库连接 /// [Comment("数据库连接")] public string Connection { get; set; } /// /// 架构 /// [Comment("架构")] public string Schema { get; set; } /// /// 备注 /// [Comment("备注")] public string Remark { get; set; } } }