Compute_ExpenseAmount.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using SMP.Model.Enums;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using XYY.Common.Standard.Attributes;
  8. using XYY.Core.Standard;
  9. namespace SMP.Model.Compute
  10. {
  11. public class Compute_ExpenseAmount : BaseEntity
  12. {
  13. public string Number { get; set; }
  14. public int ExpenseId { get; set; }
  15. public int ExpenseDetailId { get; set; }
  16. public int VersionId { get; set; }
  17. public int ExpenseItemId { get; set; }
  18. public DateTime TransactionTime { get; set; }
  19. public string Currency { get; set; }
  20. public decimal AmountinOriginalCurrency { get; set; }
  21. public decimal SettlementRate { get; set; }
  22. public string SettlementCurrency { get; set; }
  23. public decimal SettlementAmount { get; set; }
  24. public string FeeDescription { get; set; }
  25. /// <summary>
  26. /// 帐单类型 分摊来源 清数据使用
  27. /// </summary>
  28. public string BillTypeCode { get; set; }
  29. public CostType CostType { get; set; }
  30. public int? ServiceBillSpreadApplyId { get; set; }
  31. public string? LadingBillNumber { get; set; }
  32. public string Zone { get; set; }
  33. public bool IsDelete { get; set; }
  34. public SystemBillTypeEnum SystemBillType { get; set; }
  35. }
  36. }