Res_LocalGuideData.cs 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. using OASystem.Domain.Attributes;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace OASystem.Domain.Entities.Resource
  8. {
  9. /// <summary>
  10. /// 导游地接数据
  11. /// old OA TableName:OA2014.dbo.TouristGuideGroundData
  12. /// </summary>
  13. [SugarTable("Res_LocalGuideData")]
  14. public class Res_LocalGuideData : EntityBase
  15. {
  16. /// <summary>
  17. /// 区域
  18. /// </summary>
  19. [Encrypted]
  20. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(200)")]
  21. public string UnitArea { get; set; }
  22. /// <summary>
  23. /// 公司名称
  24. /// </summary>
  25. [Encrypted]
  26. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(200)")]
  27. public string UnitName { get; set; }
  28. /// <summary>
  29. /// 地址
  30. /// </summary>
  31. [Encrypted]
  32. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(500)")]
  33. public string Address { get; set; }
  34. /// <summary>
  35. /// 联系人
  36. /// </summary>
  37. [Encrypted]
  38. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(100)")]
  39. public string Contact { get; set; }
  40. /// <summary>
  41. /// 联系人手机号
  42. /// </summary>
  43. [Encrypted]
  44. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(100)")]
  45. public string ContactTel { get; set; }
  46. /// <summary>
  47. /// 联系人邮箱
  48. /// </summary>
  49. [Encrypted]
  50. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(100)")]
  51. public string ContactEmail { get; set; }
  52. /// <summary>
  53. /// 联系人传真
  54. /// </summary>
  55. [Encrypted]
  56. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(100)")]
  57. public string ContactFax { get; set; }
  58. /// <summary>
  59. /// 其他信息
  60. /// </summary>
  61. [Encrypted]
  62. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(max)")]
  63. public string OtherInfo { get; set; }
  64. /// <summary>
  65. /// 服务评分
  66. /// </summary>
  67. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  68. public int Score { get; set; }
  69. /// <summary>
  70. /// 着装得体
  71. /// A B C 选择
  72. /// </summary>
  73. [Encrypted]
  74. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(50)")]
  75. public string SuitScore { get; set; }
  76. /// <summary>
  77. /// 服务意识强度
  78. /// A B C 选择
  79. /// </summary>
  80. [Encrypted]
  81. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(50)")]
  82. public string ServeScore { get; set; }
  83. /// <summary>
  84. /// 讲解水平专业
  85. /// A B C 选择
  86. /// </summary>
  87. [Encrypted]
  88. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(50)")]
  89. public string TalkProScore { get; set; }
  90. /// <summary>
  91. /// 时间概念强度
  92. /// A B C 选择
  93. /// </summary>
  94. [Encrypted]
  95. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(50)")]
  96. public string TimeScore { get; set; }
  97. /// <summary>
  98. /// 配合能力强,服从安排
  99. /// A B C 选择
  100. /// </summary>
  101. [Encrypted]
  102. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(50)")]
  103. public string FitScore { get; set; }
  104. /// <summary>
  105. /// 应变能力强
  106. /// A B C 选择
  107. /// </summary>
  108. [Encrypted]
  109. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(50)")]
  110. public string StrainScore { get; set; }
  111. /// <summary>
  112. /// 当地语言和中文表达流畅
  113. /// A B C 选择
  114. /// </summary>
  115. [Encrypted]
  116. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(50)")]
  117. public string LocalAndChineseScore { get; set; }
  118. /// <summary>
  119. /// 导游地接的类型:0公司1私人
  120. /// </summary>
  121. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  122. public int StaffType { get; set; }
  123. [SugarColumn(IsNullable = true, ColumnDataType = "dateTime")]
  124. public DateTime LastUpdate { get; set; } = DateTime.Now;
  125. }
  126. }