Grp_DayAndCostDraft.cs 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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_DayAndCostDraft")]
  12. public class Grp_DayAndCostDraft : EntityBase
  13. {
  14. /// <summary>
  15. /// 团组Id
  16. /// </summary>
  17. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  18. public int ParentId { 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. /// 地名Id
  31. /// </summary>
  32. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  33. public int NationalTravelFeeId { get; set; }
  34. /// <summary>
  35. /// 地名 - 弃用字段不删
  36. /// </summary>
  37. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
  38. public string? Place { get; set; }
  39. /// <summary>
  40. /// 费用标准
  41. /// </summary>
  42. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  43. public decimal Cost { get; set; }
  44. /// <summary>
  45. /// 币种
  46. /// Sys_SetData STid = 66
  47. /// </summary>
  48. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  49. public int Currency { get; set; }
  50. /// <summary>
  51. /// 小计
  52. /// </summary>
  53. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  54. public decimal SubTotal { get; set; }
  55. }
  56. }