Grp_NationalTravelFee.cs 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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_NationalTravelFee")]
  13. public class Grp_NationalTravelFee : EntityBase
  14. {
  15. /// <summary>
  16. /// 洲别
  17. /// </summary>
  18. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  19. public string? Continent { get; set; }
  20. /// <summary>
  21. /// 国家
  22. /// </summary>
  23. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  24. public string? Country { get; set; }
  25. /// <summary>
  26. /// 城市
  27. /// </summary>
  28. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  29. public string? City { get; set; }
  30. /// <summary>
  31. /// 币种
  32. /// Sys_SetData STid=66
  33. /// </summary>
  34. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  35. public int Currency { get; set; }
  36. /// <summary>
  37. /// 住宿费
  38. /// </summary>
  39. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  40. public string? RoomCost { get; set; }
  41. /// <summary>
  42. /// 伙食费
  43. /// </summary>
  44. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  45. public string? FoodCost { get; set; }
  46. /// <summary>
  47. /// 公杂费
  48. /// </summary>
  49. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  50. public string? PublicCost { get; set; }
  51. /// <summary>
  52. /// 最后更新人
  53. /// </summary>
  54. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  55. public int LastUpdateUserId { get; set; }
  56. /// <summary>
  57. /// 最后更新时间
  58. /// </summary>
  59. [SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
  60. public DateTime? LastUpdateTime { get; set; } = DateTime.Now;
  61. }
  62. }