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;
}
///
/// 根据id查询C表数据和商邀费用数据
///
public class InvitationOfficialActivitiesByIdDto: PortDtoBase
{
public int Id { get; set; }
}
///
/// 操作参数
///
public class OpInvitationOfficialActivitiesDto
{
///
/// 操作状态
/// 1 添加
/// 2 修改
///
public int Status { get; set; }
//-------------------C表参数---------------------------------
///
/// 支付方式
///
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; }
}
}