using System;
using System.Collections.Generic;
namespace DAL.New_Models;
public partial class TbSysHotel
{
public int Id { get; set; }
public int? SysHotelGroupId { get; set; }
///
/// 酒店代码
///
public string Code { get; set; } = null!;
///
/// 名称
///
public string Name { get; set; } = null!;
///
/// 英文名称
///
public string Ename { get; set; } = null!;
public string? Twname { get; set; }
///
/// 联系人
///
public string? Contact { get; set; }
///
/// 联系电话
///
public string? Phone { get; set; }
///
/// 地址
///
public string? Address { get; set; }
///
/// 排序
///
public int Sort { get; set; }
///
/// 备注
///
public string? Remark { get; set; }
///
/// 上级部门
///
public int? ParentId { get; set; }
///
/// 启用
///
public bool ActiveIndicator { get; set; }
///
/// 创建人
///
public string CreatedBy { get; set; } = null!;
///
/// 创建时间
///
public DateTime CreatedDate { get; set; }
///
/// 修改人
///
public string ModifiedBy { get; set; } = null!;
///
/// 修改时间
///
public DateTime ModifiedDate { get; set; }
///
/// 登录密码
///
public string? Wxvalidate { get; set; }
public string? LogoPath { get; set; }
public string? Styles { get; set; }
public string? AssociatedAccount { get; set; }
public bool? IsAutoGetKey { get; set; }
public string? WelcomeSpeech { get; set; }
public string? GoodbyeSpeech { get; set; }
public string? DomainUrl { get; set; }
public DateTime? ValidateDate { get; set; }
public string? TvcontrolUrl { get; set; }
public string? TvcontrolToken { get; set; }
public bool? IsSyncPms { get; set; }
public string? DeviceStatusPushUrl { get; set; }
public string? FaultPushUrl { get; set; }
public string? ProvinceCode { get; set; }
public string? CityCode { get; set; }
public string? CountyCode { get; set; }
public int? Status { get; set; }
public bool? IsApprove { get; set; }
public DateTime? LastModifiedTime { get; set; }
public bool? IsVoincePowerOn { get; set; }
public bool? IsPowerOffResetXiaoDu { get; set; }
public bool? IsDeleted { get; set; }
public int? StartDayTime { get; set; }
public int? EndDayTime { get; set; }
public bool? FcspushEnable { get; set; }
public string? SkyworthTvauthCode { get; set; }
public bool? IsUseSkyworthTv { get; set; }
public bool? IsUseQianLiMa { get; set; }
public bool? IsPushPmsdata { get; set; }
public string? TouSuResponseData { get; set; }
public bool? IsUseTcltv { get; set; }
public string? HeTongNumber { get; set; }
public string? FcsPropertyId { get; set; }
public string? FcsloginUrl { get; set; }
public string? FcsloginUserName { get; set; }
public string? FcsloginPassWord { get; set; }
public string? FcsCarbonUuid { get; set; }
public string? FcsSosUuid { get; set; }
public string? FcsTouSuUuid { get; set; }
public string? FcsCleanUuid { get; set; }
public string? FcsTiSongWuPin { get; set; }
public string? FcsRcuDeviceOffline { get; set; }
public string? FcsRcuOffline { get; set; }
public string? FcsRcuOnline { get; set; }
public string? FcsMenCiClose { get; set; }
public string? FcsMenCiOpen { get; set; }
public bool? IsNewVersionProtocol { get; set; }
public virtual ICollection TbHosts { get; set; } = new List();
public virtual ICollection TbHotelSeasons { get; set; } = new List();
public virtual ICollection TbSysUsers { get; set; } = new List();
public virtual ICollection Users { get; set; } = new List();
}