using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Groups { /// /// 酒店费用子项内容 /// [SugarTable("Grp_HotelReservationsContent")] public class Grp_HotelReservationsContent:EntityBase { /// /// 团组Id /// [SugarColumn(IsNullable = true,ColumnDataType = "int")] public int DiId { get; set; } /// /// 酒店费用录入主表Id /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int HrId { get; set; } /// /// 费用类型 /// 1:房费 /// 2:早餐 /// 3:地税 /// 4:城市税 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int PriceType { get; set; } /// /// 费用 /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")] public decimal Price { get; set; } /// /// 币种 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int Currency { get; set; } /// /// 汇率 /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,4)")] public decimal Rate { get; set; } /// /// 由地接支付 /// 0 否 1是 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int IsOppay { get; set; } /// /// 支付方式 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int PayDId { get; set; } /// /// 消费方式 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(125)")] public string ConsumptionPatterns { get; set; } /// /// 消费日期 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(30)")] public string ConsumptionDate { get; set; } /// /// 卡类型 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int CTDId { get; set; } /// /// 银行卡号 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(125)")] public string BankNo { get; set; } /// /// 持卡人姓名 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(125)")] public string CardholderName { get; set; } ///// ///// 付款金额 ///// //[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")] //public decimal PayMoney { get; set; } ///// ///// 付款币种 数据类型Id ///// //[SugarColumn(IsNullable = true, ColumnDataType = "int")] //public int PaymentCurrency { get; set; } /// /// 公司银行卡号 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(125)")] public string CompanyBankNo { get; set; } /// /// 对方开户行 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(125)")] public string OtherBankName { get; set; } /// /// 对方银行账号 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(125)")] public string OtherSideNo { get; set; } /// /// 对方姓名 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(125)")] public string OtherSideName { get; set; } /// /// 是否付款 0 否 1 是 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int IsPay { get; set; } /// /// 收款方 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string Payee { get; set; } /// /// 费用标识 /// 0 公转 1 私转 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int OrbitalPrivateTransfer { get; set; } } }