Grp_DayAndCost.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.Groups
  7. {
  8. /// <summary>
  9. /// 团组 - 出入境费用 - 子项
  10. /// </summary>
  11. [SugarTable("Grp_DayAndCost")]
  12. public class Grp_DayAndCost : EntityBase
  13. {
  14. /// <summary>
  15. /// 团组Id
  16. /// </summary>
  17. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  18. public int DiId { get; set; }
  19. /// <summary>
  20. /// 类型:1为住宿费;2为伙食费;3为公杂费;4培训费用
  21. /// </summary>
  22. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  23. public int Type { get; set; }
  24. /// <summary>
  25. /// 天数
  26. /// </summary>
  27. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  28. public int Days { get; set; }
  29. /// <summary>
  30. /// 地名
  31. /// </summary>
  32. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
  33. public string? Place { get; set; }
  34. /// <summary>
  35. /// 费用标准
  36. /// </summary>
  37. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  38. public decimal Cost { get; set; }
  39. /// <summary>
  40. /// 币种
  41. /// Sys_SetData STid = 66
  42. /// </summary>
  43. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  44. public int Currency { get; set; }
  45. /// <summary>
  46. /// 小计
  47. /// </summary>
  48. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  49. public decimal SubTotal { get; set; }
  50. }
  51. }