using OASystem.Domain.Entities.Financial;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.ViewModels.Financial
{
    /// 
    /// 团组已收款项 View
    /// 
    public class Fin_ProceedsReceivedView:Fin_ProceedsReceived
    {
    }
    /// 
    /// 团组已收款项Info View
    /// 
    public class ProceedsReceivedView
    {
        public int Id { get; set; }
        ///// 
        ///// 团组Id
        ///// 
        //public int Diid { get; set; }
        /// 
        /// 到款时间
        /// 
        public string? SectionTime { get; set; }
        /// 
        /// 费用
        /// 
        public decimal Price { get; set; }
        /// 
        /// 币种
        /// 
        public int Currency { get; set; }
        /// 
        /// 收款类型
        /// 
        public int ReceivablesType { get; set; }
        /// 
        /// 收款单位
        /// 
        public string? Client { get; set; }
        /// 
        /// 收款单位 负责人 姓名
        /// 
        public string? CustomerName { get; set; }
        /// 
        /// 收款单位 负责人 姓名
        /// 
        public string? CustomerTel { get; set; }
        /// 
        /// 应付项id
        /// 
        public int FID { get; set; }
        /// 
        /// 备注
        /// 
        public string? Remark { get; set; }
    }
    /// 
    /// 团组已收款项-1Info View
    /// 
    public class ProceedsReceived1View
    {
        public int Id { get; set; }
        /// 
        /// 团组Id
        /// 
        public int Diid { get; set; }
        /// 
        /// 到款时间
        /// 
        public string? SectionTime { get; set; }
        /// 
        /// 费用
        /// 
        public decimal Price { get; set; }
        /// 
        /// 币种
        /// 
        public int Currency { get; set; }
        /// 
        /// 收款类型
        /// 
        public int ReceivablesType { get; set; }
        /// 
        /// 收款单位
        /// 
        public string? Client { get; set; }
        /// 
        /// 收款单位 负责人 姓名
        /// 
        public string? CustomerName { get; set; }
        /// 
        /// 收款单位 负责人 姓名
        /// 
        public string? CustomerTel { get; set; }
        /// 
        /// 备注
        /// 
        public string? Remark { get; set; }
    }
    /// 
    /// 会计团组费用excel View
    /// 
    public class GroupAccFeeExcelView
    {
        /// 
        /// 序号
        /// 
        public int Index { get; set; }
        /// 
        /// 单位名称
        /// 
        public string OrgName { get; set; }
        /// 
        /// 出访人数
        /// 
        public int VisitorNum { get; set; } 
        /// 
        /// 实际应收金额
        /// 
        public decimal? ActualAR { get; set; } = null;
        /// 
        /// 已收款日期
        /// 
        public string PaidDate { get; set; }
        /// 
        /// 已收款金额
        /// 
        public decimal? PaidAmount { get; set; }
        /// 
        /// 成本费用-名称
        /// 
        public string CostName { get; set; }
        /// 
        /// 成本费用-金额
        /// 
        public decimal? CostAmt { get; set; } = null;
        /// 
        /// 成本费用-币种
        /// 
        public string CostCurrency { get; set; }
        /// 
        /// 成本费用-汇率
        /// 
        public decimal? CostRate { get; set; } = null;
        /// 
        /// 成本费用-折算人民币
        /// 
        public decimal? CNYEquivalent { get; set; } = null;
        /// 
        /// 备注
        /// 
        public string Remark { get; set; }
    }
}