Grp_Opinionaire.cs 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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_Opinionaire")]
  12. public class Grp_Opinionaire : EntityBase
  13. {
  14. /// <summary>
  15. /// 团组Id
  16. /// </summary>
  17. [SugarColumn(ColumnDescription = "团组Id", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "int")]
  18. public int DiId { get; set; }
  19. /// <summary>
  20. /// 城市名称
  21. /// </summary>
  22. [SugarColumn(ColumnDescription = "城市名称", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(200)")]
  23. public string? CityName { get; set; }
  24. /// <summary>
  25. /// 导游名称
  26. /// </summary>
  27. [SugarColumn(ColumnDescription = "导游名称", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "nvarchar(200)")]
  28. public string? TourGuideName { get; set; }
  29. /// <summary>
  30. /// 餐饮评分(A、B、C、D)
  31. /// </summary>
  32. [SugarColumn(ColumnDescription = "餐饮评分(A、B、C、D)", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(10)")]
  33. public string? Catering { get; set; }
  34. /// <summary>
  35. /// 餐饮评分-原因(餐饮==C||D 有值)
  36. /// </summary>
  37. [SugarColumn(ColumnDescription = "餐饮评分-原因(餐饮评分==C||D 有值)", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(500)")]
  38. public string? CateringReason { get; set; }
  39. /// <summary>
  40. /// 住宿评分(A、B、C、D)
  41. /// </summary>
  42. [SugarColumn(ColumnDescription = "住宿评分(A、B、C、D)", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(10)")]
  43. public string? Stay { get; set; }
  44. /// <summary>
  45. /// 住宿评分-原因(住宿==C||D 有值)
  46. /// </summary>
  47. [SugarColumn(ColumnDescription = "住宿评分-原因(住宿评分==C||D 有值)", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(500)")]
  48. public string? StayReason { get; set; }
  49. /// <summary>
  50. /// 行程评分(A、B、C、D)
  51. /// </summary>
  52. [SugarColumn(ColumnDescription = "行程评分(A、B、C、D)", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(10)")]
  53. public string? Route { get; set; }
  54. /// <summary>
  55. /// 行程评分-原因(行程==C||D 有值)
  56. /// </summary>
  57. [SugarColumn(ColumnDescription = "行程评分-原因(行程评分==C||D 有值)", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(500)")]
  58. public string? RouteReason { get; set; }
  59. /// <summary>
  60. /// 公务活动评分(A、B、C、D)
  61. /// </summary>
  62. [SugarColumn(ColumnDescription = "公务活动评分(A、B、C、D)", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(10)")]
  63. public string? OfficialActivity { get; set; }
  64. /// <summary>
  65. /// 公务活动评分-原因(行程==C||D 有值)
  66. /// </summary>
  67. [SugarColumn(ColumnDescription = "公务活动评分-原因(公务活动评分==C||D 有值)", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(500)")]
  68. public string? OfficialActivityReason { get; set; }
  69. /// <summary>
  70. /// 导游评分(A、B、C、D)
  71. /// </summary>
  72. [SugarColumn(ColumnDescription = "导游评分(A、B、C、D)", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(10)")]
  73. public string? TourGuide { get; set; }
  74. /// <summary>
  75. /// 导游评分-原因(行程==C||D 有值)
  76. /// </summary>
  77. [SugarColumn(ColumnDescription = "导游评分-原因(导游评分==C||D 有值)", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(500)")]
  78. public string? TourGuideReason { get; set; }
  79. /// <summary>
  80. /// 翻译评分(A、B、C、D)
  81. /// </summary>
  82. [SugarColumn(ColumnDescription = "翻译评分(A、B、C、D)", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(10)")]
  83. public string? Translate { get; set; }
  84. /// <summary>
  85. /// 翻译评分-原因(行程==C||D 有值)
  86. /// </summary>
  87. [SugarColumn(ColumnDescription = "翻译评分-原因(翻译评分==C||D 有值)", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(500)")]
  88. public string? TranslateReason { get; set; }
  89. /// <summary>
  90. /// 出行评分(A、B、C、D)
  91. /// </summary>
  92. [SugarColumn(ColumnDescription = "出行评分(A、B、C、D)", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(10)")]
  93. public string? Trip { get; set; }
  94. /// <summary>
  95. /// 出行评分-原因(行程==C||D 有值)
  96. /// </summary>
  97. [SugarColumn(ColumnDescription = "出行评分-原因(出行评分==C||D 有值)", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(500)")]
  98. public string? TripReason { get; set; }
  99. /// <summary>
  100. /// 电子签名文件名称
  101. /// </summary>
  102. [SugarColumn(ColumnDescription = "电子签名文件名称", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(100)")]
  103. public string? ESFileName { get; set; }
  104. /// <summary>
  105. /// 签名日期(2024-10-08 15:00:00)
  106. /// </summary>
  107. [SugarColumn(ColumnDescription = "签名日期", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(30)")]
  108. public string? SignatureDate { get; set; }
  109. }
  110. }