namespace FoodLabeling.Th.Application.Contracts.Dtos.MultiTenancy;
///
/// 登录页租户下拉项(含 Id 供 H5 传 tenantId;不含连接串)
///
public class ThTenantSelectDto
{
/// 租户 Id(登录 th-web-auth/login 时作为 tenantId)
public Guid Id { get; set; }
/// 租户名称
public string Name { get; set; } = string.Empty;
/// 租户创建时间(平台主库 yitenant)
public DateTime CreationTime { get; set; }
/// 默认管理员登录账号(种子 UserName=admin)
public string LoginAccount { get; set; } = string.Empty;
/// AES-CBC 加密后的默认管理员密码(Base64 密文)
public string Password { get; set; } = string.Empty;
/// AES IV(Base64),前端解密 password 时使用
public string PasswordSalt { get; set; } = string.Empty;
}