Fin_OtherPrice.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. /// 雷怡 2023-08-15 15:13
  11. /// </summary>
  12. [SugarTable("Fin_OtherPrice")]
  13. public class Fin_OtherPrice:EntityBase
  14. {
  15. /// <summary>
  16. /// 团组Id
  17. /// </summary>
  18. [SugarColumn(IsNullable = true,ColumnDataType = "int")]
  19. public int Diid { get; set; }
  20. /// <summary>
  21. /// 费用名称
  22. /// </summary>
  23. [SugarColumn(IsNullable = true,ColumnDataType = "varchar(100)")]
  24. public string? PriceName { get; set; }
  25. /// <summary>
  26. /// 费用金额
  27. /// </summary>
  28. [SugarColumn(IsNullable = true,ColumnDataType = "decimal(10,2)")]
  29. public decimal Price { get; set; }
  30. /// <summary>
  31. /// 币种Id
  32. /// </summary>
  33. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  34. public int CurrencyId { get; set; }
  35. /// <summary>
  36. /// 币种汇率
  37. /// </summary>
  38. [SugarColumn(IsNullable = true,ColumnDataType = "decimal(10,4)")]
  39. public decimal DayRate { get; set; }
  40. /// <summary>
  41. /// 付款类型
  42. /// </summary>
  43. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  44. public int PayType { get; set; }
  45. /// <summary>
  46. /// 退款标识
  47. /// </summary>
  48. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  49. public int RefundType { get; set; }
  50. }
  51. }