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; } } }