using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.ViewModels.Groups { public class InvitationOfficialActivitiesByIdView { /// /// 支付方式 /// 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 DateTime InviteTime { get; set; } /// /// 附件 /// public string Attachment { get; set; } /// /// 邀请费用 /// public decimal InviteCosts { get; set; } /// /// 币种 /// public int Currency { get; set; } /// /// 快递费用 /// public decimal SendCost { 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; } } }