using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.ViewModels.Groups { /// /// 根据团组Id查询保险费用列表 /// public class CustomersView { public int RowNumber { get; set; } /// /// 主键Id /// public int Id { get; set; } /// /// 客人姓名 /// public string ClientName { get; set; } /// /// 保险费用 /// public decimal InsuranceCosts { get; set; } /// /// 保险费用币种 /// public int Currency { get; set; } /// /// 保险费用币种Str /// public string CurrencyStr { get; set; } /// /// 附件地址 /// public string Attachment { get; set; } /// /// 费用标识 /// public int OrbitalPrivateTransfer { get; set; } /// /// 费用表示Str /// public string OrbitalPrivateTransferStr { get; set; } /// /// 创建人姓名 /// public string CnName { get; set; } /// /// 是否审核 /// public int IsAuditGM { get; set; } /// /// 是否审核Str /// public string IsAuditGMStr { get; set; } public string PayName { get; set; } public string IsPayStr { get; set; } } public class CustomersByIdView { /// /// 主键Id /// public int Id { get; set; } /// /// 团组外键编号 /// public int DiId { get; set; } /// /// 保险名称 /// public int Iid { get; set; } /// /// 保险名称Str /// public string IidStr { get; set; } /// /// 客户名称 /// public string ClientName { get; set; } /// /// 保险费用 /// public decimal InsuranceCosts { get; set; } /// /// 币种 /// public int Currency { get; set; } /// /// 币种Str /// public string CurrencyStr { get; set; } /// /// 保险附件 /// public string Attachment { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 余额 /// public decimal InsuranceBalance { get; set; } } public class CreditCardView { /// /// 支付方式 /// public int PayDId { get; set; } /// /// 支付方式Str /// public string PayDIdStr { get; set; } /// /// 付款金额 /// public decimal PayMoney { get; set; } /// /// 付款币种 数据类型Id /// public int PaymentCurrency { get; set; } /// /// 付款币种 数据类型Str /// public string PaymentCurrencyStr { get; set; } /// /// 消费方式 /// public string ConsumptionPatterns { get; set; } /// /// 消费日期 /// public string ConsumptionDate { get; set; } /// /// 卡类型 /// public int CTDId { get; set; } /// /// 卡类型Str /// public string CTDIdStr { get; set; } /// /// 公司银行卡号 /// public string CompanyBankNo { get; set; } /// /// 对方开户行 /// public string OtherBankName { get; set; } /// /// 对方银行账号 /// public string OtherSideNo { get; set; } /// /// 对方姓名 /// public string OtherSideName { get; set; } /// /// 银行卡号 /// public string BankNo { get; set; } /// /// 持卡人姓名 /// public string CardholderName { get; set; } /// /// 收款方 /// public string Payee { get; set; } /// /// 费用标识 /// public int OrbitalPrivateTransfer { get; set; } /// /// 费用标识 /// public string OrbitalPrivateTransferStr { get; set; } /// /// 总经理是否审核 0 未审核 1已通过 2未通过 /// public int IsAuditGM { get; set; } /// /// C表备注 /// public string Remark { get; set; } /// /// 是否付款 0 否 1 是 /// public int IsPay { get; set; } } public class InsuranceCostView { public int Id { get; set; } /// /// 保险名称 /// public string GName { get; set; } /// /// 余额 /// public decimal Balance { get; set; } } }