You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
862 B
C#

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