using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.Groups
{
    /// 
    /// 酒店预定费用表
    /// 
    [SugarTable("Grp_HotelReservations")]
    public class Grp_HotelReservations:EntityBase
    {
        /// 
        /// 团组Id
        /// 
        [SugarColumn(IsNullable =true,ColumnDataType ="int")]
        public int DiId { get; set; }
        /// 
        /// 客人类型(设置数据外键编号)
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int GTId { get; set; }
        /// 
        /// 入住卷号码
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
        public string CheckNumber { get; set; }
        /// 
        /// 预订网站(设置数据外键编号)
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int ReservationsWebsite { get; set; }
        /// 
        /// 预订号码
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(225)")]
        public string ReservationsNo { get; set; }
        /// 
        /// 酒店确定编号
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(225)")]
        public string DetermineNo { get; set; }
        /// 
        /// 所在城市
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
        public string City { get; set; }
        /// 
        /// 酒店名称
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
        public string HotelName { get; set; }
        /// 
        /// 酒店地址
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(225)")]
        public string HotelAddress { get; set; }
        /// 
        /// 酒店电话
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
        public string HotelTel { get; set; }
        /// 
        /// 酒店传真
        /// 弃用 弃用时间 2023-12-28 17:30
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
        public string HotelFax { get; set; }
        /// 
        /// 客人姓名
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(225)")]
        public string GuestName { get; set; }
        /// 
        /// 入住日期
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(30)")]
        public string CheckInDate { get; set; }
        /// 
        /// 退房日期
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(30)")]
        public string CheckOutDate { get; set; }
        /// 
        /// 预算金额
        /// 弃用 弃用时间 2023-12-28 17:30
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
        public decimal Budget { get; set; }
        /// 
        /// 预算币种(设置数据外键编号)
        /// 弃用 弃用时间 2023-12-28 17:30
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int BudgetCurrency { get; set; }
        /// 
        /// 单间数量
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int SingleRoomCount { get; set; }
        /// 
        /// 单间单价
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
        public decimal SingleRoomPrice { get; set; }
        /// 
        /// 双间数量
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int DoubleRoomCount { get; set; }
        /// 
        /// 双间单价
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
        public decimal DoubleRoomPrice { get; set; }
        /// 
        /// 套房数量
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int SuiteRoomCount { get; set; }
        /// 
        /// 套房单价
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
        public decimal SuiteRoomPrice { get; set; }
        /// 
        /// 其他房型数量
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int OtherRoomCount { get; set; }
        /// 
        /// 其他房型单价
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
        public decimal OtherRoomPrice { get; set; }
        /// 
        /// 佣金
        /// 弃用 弃用时间 2023-12-28 17:30
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
        public decimal Commission { get; set; }
        /// 
        /// 佣金币种(设置数据外键编号)
        /// 弃用 弃用时间 2023-12-28 17:30
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int CommissionCurrency { get; set; }
        /// 
        /// 佣金标识
        /// 弃用 弃用时间 2023-12-28 17:30
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int CommissionMark { get; set; }
        /// 
        /// 房间说明
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
        public string RoomExplanation { get; set; }
        /// 
        /// 附件地址
        /// 弃用 弃用时间 2023-12-28 17:30
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(225)")]
        public string Attachment { get; set; }
        /// 
        /// 信用卡金额
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
        public decimal CardPrice { get; set; }
        /// 
        /// 信用卡刷卡类型
        /// 之前存卡类型
        /// 现在存币种
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int CardPriceCurrency { get; set; }
        /// 
        /// 确认标识   信用卡金额
        /// 0:未刷(红色)  1:已刷(绿色)
        /// 弃用 弃用时间 2023-12-28 17:30
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int IsCardPrice { get; set; }
        /// 
        /// 早餐费
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
        public decimal BreakfastPrice { get; set; }
        /// 
        /// 早餐费 币种
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int BreakfastCurrency { get; set; }
        /// 
        /// 由地接支付
        /// 0 是 1否
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int Isoppay { get; set; }
        /// 
        /// 是否有单间
        /// 弃用 弃用时间 2023-12-28 17:30
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int CboOne { get; set; }
        /// 
        /// 是否有双间
        /// 弃用 弃用时间 2023-12-28 17:30
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int CboTwo { get; set; }
        /// 
        /// 是否有酒店套房
        /// 弃用 弃用时间 2023-12-28 17:30
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int CboThree { get; set; }
        /// 
        /// 是否有其他房型
        /// 弃用 弃用时间 2023-12-28 17:30
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int CboFour { get; set; }
        /// 
        /// 预计单间数量
        /// 弃用 弃用时间 2023-12-28 17:30
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int PredictSingleRoom { get; set; }
        /// 
        /// 预计双人间数量
        /// 弃用 弃用时间 2023-12-28 17:30
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int PredictDoubleRoom { get; set; }
        /// 
        /// 预计套房数量
        /// 弃用 弃用时间 2023-12-28 17:30
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int PredictSuiteRoom { get; set; }
        /// 
        /// 预计其他间数量
        /// 弃用 弃用时间 2023-12-28 17:30
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int PredictOtherRoom { get; set; }
        /// 
        /// 地税
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
        public decimal GovernmentRent { get; set; }
        /// 
        /// 地税币种
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int GovernmentRentCurrency { get; set; }
        /// 
        /// 城市税
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
        public decimal CityTax { get; set; }
        /// 
        /// 城市税币种
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int CityTaxCurrency { get; set; }
        /// 
        /// 房间入住人类型
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int CheckType { get; set; }
    }
}