Fin_DailyFeePaymentContent.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.Entities.Financial
  7. {
  8. /// <summary>
  9. /// 日常费用付款申请
  10. /// </summary>
  11. [SugarTable("Fin_DailyFeePaymentContent")]
  12. public class Fin_DailyFeePaymentContent : EntityBase
  13. {
  14. /// <summary>
  15. /// 日常费用付款申请外键编号
  16. /// </summary>
  17. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  18. public int DFPId { get; set; }
  19. /// <summary>
  20. /// 费用名称
  21. /// </summary>
  22. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(varchar(125))")]
  23. public string? PriceName { get; set; }
  24. /// <summary>
  25. /// 数量
  26. /// </summary>
  27. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
  28. public decimal Quantity { get; set; }
  29. /// <summary>
  30. /// 单价
  31. /// </summary>
  32. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,4)")]
  33. public decimal Price { get; set; }
  34. /// <summary>
  35. /// 单项费用合计
  36. /// </summary>
  37. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,4)")]
  38. public decimal ItemTotal { get; set; }
  39. }
  40. }