Fin_GroupExtraCost.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. /// 雷怡 2024-01-17 17:56
  10. /// 财务 - 团组 超支费用
  11. /// </summary>
  12. /// </summary>
  13. [SugarTable("Fin_GroupExtraCost")]
  14. public class Fin_GroupExtraCost : EntityBase
  15. {
  16. /// <summary>
  17. /// 团组Id
  18. /// </summary>
  19. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  20. public int DiId { get; set; }
  21. /// <summary>
  22. /// 费用名称
  23. /// </summary>
  24. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  25. public string? PriceName { get; set; }
  26. /// <summary>
  27. /// 费用金额
  28. /// </summary>
  29. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  30. public decimal Price { get; set; }
  31. /// <summary>
  32. /// 团组Id(币种ID)
  33. /// </summary>
  34. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  35. public int PriceCurrency { get; set; }
  36. /// <summary>
  37. /// 费用类型(类型ID)
  38. /// </summary>
  39. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  40. public int PriceType { get; set; }
  41. /// <summary>
  42. /// 系数
  43. /// </summary>
  44. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  45. public decimal Coefficient { get; set; }
  46. /// <summary>
  47. /// 费用详细类型(类型ID)
  48. /// </summary>
  49. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  50. public int PriceDetailType{ get; set; }
  51. /// <summary>
  52. /// 附件地址
  53. /// </summary>
  54. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
  55. public string? FilePath { get; set; }
  56. }
  57. }