Grp_DecreasePayments.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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.Groups
  7. {
  8. /// <summary>
  9. /// 团组增减款项表
  10. /// --其他款项
  11. /// </summary>
  12. [SugarTable("Grp_DecreasePayments")]
  13. public class Grp_DecreasePayments: EntityBase
  14. {
  15. /// <summary>
  16. /// 团组外键编号
  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(225)")]
  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. /// 费用币种
  32. /// </summary>
  33. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  34. public int Currency { get; set; }
  35. /// <summary>
  36. /// 附件地址
  37. /// </summary>
  38. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(120)")]
  39. public string FilePath { get; set; }
  40. }
  41. }