Fin_OtherPrice.cs 1.6 KB

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