using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Dtos.Groups
{
    public class CustomersByDiIdDto : DtoBase
    {
        public int DiId { get; set; }
        public string ClientName { get; set; }
    }
    /// 
    /// 根据Id查询单条数据和c表数据
    /// 
    public class CustomersByIdDto
    {
        public int Id { get; set; }
    }
    /// 
    /// 保险下拉框初始化
    /// 
    public class CustomersInitializeDto
    {
        /// 
        /// 请求端口分类
        /// 1 Web 2 Android 3 IOS
        /// 
        public int PortType { get; set; } = 1;
        public int DiId { get; set; }
    }
    /// 
    /// 保险操作参数
    /// 
    public class OpCustomersDto 
    {
        /// 
        /// 操作状态
        /// 1 添加 
        /// 2 修改 
        /// 
        public int Status { get; set; }
        public int Id { get; set; }
        /// 
        /// 团组Id
        /// 
        public int DiId { get; set; }
        /// 
        /// 保险名称
        /// 
        public int Iid { get; set; }
        /// 
        /// 客户名称
        /// 
        public string ClientName { get; set; }
        /// 
        /// 保险费用
        /// 
        public decimal InsuranceCosts { get; set; }
        /// 
        /// 币种
        /// 
        public int Currency { get; set; }
        /// 
        /// 保险附件
        /// 
        public string Attachment { get; set; }
        /// 
        /// 创建者Id
        /// 
        public int CreateUserId { get; set; }
        /// 
        /// 备注
        /// 
        public string Remark { get; set; }
        //C表参数
        /// 
        /// 付款金额
        /// 
        public decimal PayMoney { get; set; }
        /// 
        /// 付款币种 数据类型Id
        /// 
        public int PaymentCurrency { get; set; }
        /// 
        /// 支付方式
        /// 
        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; }
    }
}