using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Dtos.Groups
{
///
/// 根据团组id查询签证费用列表
///
public class VisaPriceDto
{
public int PageIndex { get; set; } = 1;
public int PageSize { get; set; } = 10;
public int PortType { get; set; } = 1;
public int DiID { get; set; }
///
/// 客户名称
///
public String VisaClient { get; set; }
public int IsPaySign { get; set; } = -1;
}
public class PostVisaByIdDto
{
public int Id { get; set; }
}
///
/// 签证费用修改添加dto
///
public class OpVisaPriceDto
{
///
/// 操作状态
/// 1 添加
/// 2 修改
///
public int Status { get; set; }
///
/// 主键Id
///
public int Id { get; set; }
///
/// 团组Id
///
public int DiId { get; set; }
///
/// 签证客户
///
public string VisaClient { get; set; }
///
/// 签证费用
///
public decimal VisaPrice { get; set; }
///
/// 币种
///
public int VisaCurrency { get; set; }
///
/// 是否第三方代办
///
public int IsThird { get; set; }
///
/// 签证人员类型
///
public int PassengerType { get; set; }
///
/// 办理签证人数
///
public int VisaNumber { get; set; }
///
/// 免签人数
///
public int VisaFreeNumber { get; set; }
///
/// 创建者Id
///
public int CreateUserId { get; set; }
///
/// 备注
///
public string Remark { get; set; }
//c表dto参数
///
/// 支付方式
///
public int PayDId { get; set; }
///
/// 消费方式
///
public string ConsumptionPatterns { get; set; }
///
/// 消费日期
///
public String ConsumptionDate { get; set; }
///
/// 卡类型
///
public int CTDId { 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; }
///
/// C表备注
///
public string CRemark { get; set; }
///
/// 签证描述
///
public string VisaDescription { get; set; }
///
/// 地区
///
public string Area { get; set; }
///
/// 代办费类型
/// 0 未选择 1 小公务 2 大公务
///
public int AgencyFeeType { get; set; }
}
}