Res_TranslatorLibrary.cs 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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.Resource
  7. {
  8. /// <summary>
  9. /// 翻译人员库
  10. /// </summary>
  11. [SugarTable("Res_TranslatorLibrary")]
  12. public class Res_TranslatorLibrary : EntityBase
  13. {
  14. /// <summary>
  15. /// 所在地区
  16. /// </summary>
  17. [SugarColumn(ColumnDescription = "所在地区", IsNullable = true, ColumnDataType = "nvarchar(100)")]
  18. public string Area { get; set; }
  19. /// <summary>
  20. /// 姓名
  21. /// </summary>
  22. [SugarColumn(ColumnDescription = "翻译人员姓名", IsNullable = true, ColumnDataType = "nvarchar(100)")]
  23. public string Name { get; set; }
  24. /// <summary>
  25. /// 性别(0:未设置 1:男 2:女)
  26. /// </summary>
  27. [SugarColumn(ColumnDescription = "性别(0:未设置 1:男 2:女)", IsNullable = true, ColumnDataType = "int")]
  28. public int Sex { get; set; }
  29. /// <summary>
  30. /// 照片
  31. /// </summary>
  32. [SugarColumn(ColumnDescription = "照片", IsNullable = true, ColumnDataType = "nvarchar(max)")]
  33. public string Photo { get; set; }
  34. /// <summary>
  35. /// 联系电话
  36. /// </summary>
  37. [SugarColumn(ColumnDescription = "联系电话", IsNullable = true, ColumnDataType = "varchar(50)")]
  38. public string Tel { get; set; }
  39. /// <summary>
  40. /// 邮箱号
  41. /// </summary>
  42. [SugarColumn(ColumnDescription = "邮箱号", IsNullable = true, ColumnDataType = "varchar(50)")]
  43. public string Email { get; set; }
  44. /// <summary>
  45. /// 微信号
  46. /// </summary>
  47. [SugarColumn(ColumnDescription = "微信号", IsNullable = true, ColumnDataType = "varchar(50)")]
  48. public string WechatNo { get; set; }
  49. /// <summary>
  50. /// 其他社交账号
  51. /// </summary>
  52. [SugarColumn(ColumnDescription = "其他社交账号", IsNullable = true, ColumnDataType = "varchar(200)")]
  53. public string OtherSocialAccounts { get; set; }
  54. /// <summary>
  55. /// 语种
  56. /// </summary>
  57. [SugarColumn(ColumnDescription = "语种", IsNullable = true, ColumnDataType = "varchar(50)")]
  58. public string Language { get; set; }
  59. /// <summary>
  60. /// 费用
  61. /// </summary>
  62. [SugarColumn(ColumnDescription = "费用", IsNullable = true, ColumnDataType = "decimal(10,2)")]
  63. public decimal Price { get; set; }
  64. /// <summary>
  65. /// 币种
  66. /// </summary>
  67. [SugarColumn(ColumnDescription = "语种", IsNullable = true, ColumnDataType = "int")]
  68. public int Currency { get; set; }
  69. /// <summary>
  70. /// 简历或其他证书
  71. /// </summary>
  72. [SugarColumn(ColumnDescription = "简历或其他证书", IsNullable = true, ColumnDataType = "varchar(200)")]
  73. public string Files { get; set; }
  74. }
  75. }