namespace GDZZ.Core.Service; /// /// 租户参数 /// public class TenantOutput { /// /// 租户Id /// public long Id { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 名称 /// public string AdminName { get; set; } /// /// 主机 /// public string Host { get; set; } /// /// 电子邮箱 /// public string Email { get; set; } /// /// 电话号码 /// public string Phone { get; set; } /// /// 模式 /// public string Schema { get; set; } /// /// 数据库连接 /// public string Connection { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 创建时间 /// public string CreatedTime { get; set; } /// /// 招聘费用 /// public decimal PushFee { get; set; } }