|
@@ -15,10 +15,10 @@ namespace OASystem.Domain.Entities.Groups
|
|
|
/// <summary>
|
|
|
/// 团组Id
|
|
|
/// </summary>
|
|
|
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
- public int DIId { get; set; }
|
|
|
+ [SugarColumn(IsNullable =true,ColumnDataType ="int")]
|
|
|
+ public int DiId { get; set; }
|
|
|
/// <summary>
|
|
|
- /// 客人类型 数据类型字表Id
|
|
|
+ /// 客人类型(设置数据外键编号)
|
|
|
/// </summary>
|
|
|
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
public int GTId { get; set; }
|
|
@@ -28,7 +28,7 @@ namespace OASystem.Domain.Entities.Groups
|
|
|
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
|
|
|
public string CheckNumber { get; set; }
|
|
|
/// <summary>
|
|
|
- /// 预订网站数据类型字表Id
|
|
|
+ /// 预订网站(设置数据外键编号)
|
|
|
/// </summary>
|
|
|
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
public int ReservationsWebsite { get; set; }
|
|
@@ -50,7 +50,7 @@ namespace OASystem.Domain.Entities.Groups
|
|
|
/// <summary>
|
|
|
/// 酒店名称
|
|
|
/// </summary>
|
|
|
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
|
|
|
public string HotelName { get; set; }
|
|
|
/// <summary>
|
|
|
/// 酒店地址
|
|
@@ -60,91 +60,90 @@ namespace OASystem.Domain.Entities.Groups
|
|
|
/// <summary>
|
|
|
/// 酒店电话
|
|
|
/// </summary>
|
|
|
-
|
|
|
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
|
|
|
public string HotelTel { get; set; }
|
|
|
/// <summary>
|
|
|
/// 酒店传真
|
|
|
/// </summary>
|
|
|
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
|
|
|
public string HotelFax { get; set; }
|
|
|
/// <summary>
|
|
|
/// 客人姓名
|
|
|
/// </summary>
|
|
|
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
|
|
|
public string GuestName { get; set; }
|
|
|
/// <summary>
|
|
|
/// 入住日期
|
|
|
/// </summary>
|
|
|
- [SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
|
|
|
- public DateTime CheckInDate { get; set; }
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(80)")]
|
|
|
+ public string CheckInDate { get; set; }
|
|
|
/// <summary>
|
|
|
/// 退房日期
|
|
|
/// </summary>
|
|
|
- [SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
|
|
|
- public DateTime CheckOutDate { get; set; }
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(80)")]
|
|
|
+ public string CheckOutDate { get; set; }
|
|
|
/// <summary>
|
|
|
- /// 实际金额
|
|
|
+ /// 预算金额
|
|
|
/// </summary>
|
|
|
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")]
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
|
|
|
public decimal Budget { get; set; }
|
|
|
/// <summary>
|
|
|
- /// 预算币种 数据类型字表Id
|
|
|
+ /// 预算币种(设置数据外键编号)
|
|
|
/// </summary>
|
|
|
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
public int BudgetCurrency { get; set; }
|
|
|
/// <summary>
|
|
|
/// 单间数量
|
|
|
/// </summary>
|
|
|
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
|
|
|
public int SingleRoomCount { get; set; }
|
|
|
/// <summary>
|
|
|
/// 单间单价
|
|
|
/// </summary>
|
|
|
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")]
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
|
|
|
public decimal SingleRoomPrice { get; set; }
|
|
|
/// <summary>
|
|
|
/// 双间数量
|
|
|
/// </summary>
|
|
|
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
|
|
|
public int DoubleRoomCount { get; set; }
|
|
|
/// <summary>
|
|
|
/// 双间单价
|
|
|
/// </summary>
|
|
|
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")]
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
|
|
|
public decimal DoubleRoomPrice { get; set; }
|
|
|
/// <summary>
|
|
|
/// 套房数量
|
|
|
/// </summary>
|
|
|
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
|
|
|
public int SuiteRoomCount { get; set; }
|
|
|
/// <summary>
|
|
|
/// 套房单价
|
|
|
/// </summary>
|
|
|
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")]
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
|
|
|
public decimal SuiteRoomPrice { get; set; }
|
|
|
/// <summary>
|
|
|
/// 其他房型数量
|
|
|
/// </summary>
|
|
|
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
|
|
|
public int OtherRoomCount { get; set; }
|
|
|
/// <summary>
|
|
|
/// 其他房型单价
|
|
|
/// </summary>
|
|
|
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")]
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
|
|
|
public decimal OtherRoomPrice { get; set; }
|
|
|
/// <summary>
|
|
|
/// 佣金
|
|
|
/// </summary>
|
|
|
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")]
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
|
|
|
public decimal Commission { get; set; }
|
|
|
/// <summary>
|
|
|
- /// 佣金币种
|
|
|
+ /// 佣金币种(设置数据外键编号)
|
|
|
/// </summary>
|
|
|
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
public int CommissionCurrency { get; set; }
|
|
|
/// <summary>
|
|
|
- /// 佣金标识0否 1是
|
|
|
+ /// 佣金标识
|
|
|
/// </summary>
|
|
|
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
public int CommissionMark { get; set; }
|
|
@@ -154,49 +153,95 @@ namespace OASystem.Domain.Entities.Groups
|
|
|
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
|
|
|
public string RoomExplanation { get; set; }
|
|
|
/// <summary>
|
|
|
- /// 附件
|
|
|
+ /// 附件地址
|
|
|
/// </summary>
|
|
|
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
|
|
|
public string Attachment { get; set; }
|
|
|
/// <summary>
|
|
|
/// 信用卡金额
|
|
|
/// </summary>
|
|
|
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")]
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
|
|
|
public decimal CardPrice { get; set; }
|
|
|
/// <summary>
|
|
|
- /// 确认标识信用卡金额 0:未刷(红色) 1:已刷(绿色)
|
|
|
+ /// 确认标识 信用卡金额
|
|
|
+ /// 0:未刷(红色) 1:已刷(绿色)
|
|
|
/// </summary>
|
|
|
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
public int IsCardPrice { get; set; }
|
|
|
/// <summary>
|
|
|
- /// 早餐费
|
|
|
+ /// 早饭费
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
|
|
|
+ public decimal BreakfastPrice { get; set; }
|
|
|
+ /// <summary>
|
|
|
+ /// 由地接支付
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
+ public int Isoppay { get; set; }
|
|
|
+ /// <summary>
|
|
|
+ /// 是否有单间
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
+ public int CboOne { get; set; }
|
|
|
+ /// <summary>
|
|
|
+ /// 是否有双间
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
+ public int CboTwo { get; set; }
|
|
|
+ /// <summary>
|
|
|
+ /// 是否有酒店套房
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
+ public int CboThree { get; set; }
|
|
|
+ /// <summary>
|
|
|
+ /// 是否有其他房型
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
+ public int CboFour { get; set; }
|
|
|
+ /// <summary>
|
|
|
+ /// 预计单间数量
|
|
|
/// </summary>
|
|
|
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")]
|
|
|
- public decimal breakfastPrice { get; set; }
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
+ public int PredictSingleRoom { get; set; }
|
|
|
/// <summary>
|
|
|
- /// 是否由地接支付0否1是
|
|
|
+ /// 预计双人间数量
|
|
|
/// </summary>
|
|
|
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
- public int IsOppay { get; set; }
|
|
|
+ public int PredictDoubleRoom { get; set; }
|
|
|
/// <summary>
|
|
|
- /// 是否住了单间0否1是
|
|
|
+ /// 预计套房数量
|
|
|
/// </summary>
|
|
|
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
- public int IsCboOne { get; set; }
|
|
|
+ public int PredictSuiteRoom { get; set; }
|
|
|
/// <summary>
|
|
|
- /// 是否住了双间0否1是
|
|
|
+ /// 预计其他间数量
|
|
|
/// </summary>
|
|
|
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
- public int IsCboTwo { get; set; }
|
|
|
+ public int PredictOtherRoom { get; set; }
|
|
|
/// <summary>
|
|
|
- /// 是否住了酒店套房0否1是
|
|
|
+ /// 地税
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
|
|
|
+ public decimal GovernmentRent { get; set; }
|
|
|
+ /// <summary>
|
|
|
+ /// 地税币种
|
|
|
/// </summary>
|
|
|
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
- public int IsCboThree { get; set; }
|
|
|
+ public int GovernmentRentCurrency { get; set; }
|
|
|
/// <summary>
|
|
|
- /// 是否住了其他房型0否1是
|
|
|
+ /// 城市税
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
|
|
|
+ public decimal CityTax { get; set; }
|
|
|
+ /// <summary>
|
|
|
+ /// 城市税币种
|
|
|
/// </summary>
|
|
|
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
- public int IsCboFour { get; set; }
|
|
|
+ public int CityTaxCurrency { get; set; }
|
|
|
+ /// <summary>
|
|
|
+ /// 房间入住人类型
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
|
|
|
+ public string CheckType { get; set; }
|
|
|
}
|
|
|
}
|