using OASystem.Domain.Attributes; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Dtos.Groups { /// /// 根据团组id查询费用 /// public class InvitationOfficialActivitiesListDto { public int DiId { get; set; } public string Inviter { get; set; } public string StartInviteTime { get; set; } public string EndInviteTime { get; set; } public int PageIndex { get; set; } = 1; public int PageSize { get; set; } = 10; public int IsPaySign { get; set; } = -1; } /// /// 根据id查询C表数据和商邀费用数据 /// public class InvitationOfficialActivitiesByIdDto: PortDtoBase { public int Id { get; set; } } public class EncryptionMatching { [Encrypted] public string InviterArea { get;set; } [Encrypted] public string Inviter { get;set; } } /// /// 操作参数 /// public class OpInvitationOfficialActivitiesDto { /// /// 操作状态 /// 1 添加 /// 2 修改 /// public int Status { get; set; } //------------------- C表参数 -------------------------- //------------------ 消费方式及时间 -------------------------- /// /// 消费方式 /// public string ConsumptionPatterns { get; set; } /// /// 消费日期 /// public string ConsumptionDate { get; set; } //---------------------payType==刷卡-------------------------- /// /// 卡类型 /// public int CTDId { get; set; } /// /// 银行卡号 /// public string BankNo { get; set; } /// /// 持卡人姓名 /// public string CardholderName { get; set; } //-------------------payType==转账Or现金 --------------------- /// /// 公司银行卡号 /// public string CompanyBankNo { get; set; } /// /// 对方开户行 /// public string OtherBankName { get; set; } /// /// 对方银行账号 /// public string OtherSideNo { get; set; } /// /// 对方姓名 /// public string OtherSideName { get; set; } //---------------------金额----------------------------------- /// /// 总计费用 /// public decimal PayMoney { get; set; } /// /// 总计费用币种 /// public int PaymentCurrency { get; set; } /// /// 支付方式 /// public int PayDId { get; set; } /// /// 费用标识 /// public int OrbitalPrivateTransfer { get; set; } /// /// 收款方 /// public string Payee { get; set; } //-------------------商邀参数-------------------------- /// /// 主键Id /// public int Id { get; set; } /// /// 团组外键编号 /// public int DiId { get; set; } /// /// 邀请方地区 /// public string InviterArea { get; set; } /// /// 邀请方 /// public string Inviter { get; set; } /// /// 邀请时间 /// public string InviteTime { get; set; } /// /// 附件 /// public string[] Attachment { get; set; } /// /// 邀请费用 /// public decimal InviteCost { get; set; } /// /// 邀请费用币种 /// public int InviteCurrency { get; set; } /// /// 快递费用 /// public decimal SendCost { get; set; } /// /// 快递费用币种 /// public int SendCurrency { get; set; } /// /// 公务活动费 /// public decimal EventsCost { get; set; } /// /// 公务活动费币种 /// public int EventsCurrency { get; set; } /// /// 公务翻译费 /// public decimal TranslateCost { get; set; } /// /// 公务翻译费币种 /// public int TranslateCurrency { get; set; } /// /// 公务标识(是否到场) /// public int IsGoOfficaiaBussiness { get; set; } /// /// 创建者Id /// public int CreateUserId { get; set; } /// /// 备注 /// public string Remark { get; set; } //-----------------------邀请方资料---------- /// 邀请方地址 public string Address { get; set; } /// /// 联系人 /// public string Contact { get; set; } /// /// 职务 /// public string Job { get; set; } /// /// 联系电话 /// public string Tel { get; set; } /// /// 电子邮箱 /// public string Email { get; set; } /// /// 传真号码 /// public string Fax { get; set; } /// /// 其他信息 /// public string OtherInformation { get; set; } } }