Res_AskData.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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_AskData")]
  12. public class Res_AskData:EntityBase
  13. {
  14. /// <summary>
  15. /// 关联团组
  16. /// </summary>
  17. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
  18. public string DeleName { get; set; } = "";
  19. /// <summary>
  20. /// 国家
  21. ///
  22. /// </summary>
  23. [SugarColumn(IsNullable =true,ColumnDataType ="varchar(100)")]
  24. public string Country { get; set; }
  25. /// <summary>
  26. /// 地区
  27. /// </summary>
  28. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
  29. public string Area { get; set; }
  30. /// <summary>
  31. /// 公务方名称
  32. /// </summary>
  33. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
  34. public string UnitName { get; set; }
  35. /// <summary>
  36. /// 涉及领域
  37. /// </summary>
  38. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
  39. public string Field { get; set; }
  40. /// <summary>
  41. /// 话术范例
  42. /// </summary>
  43. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
  44. public string TalkCase { get; set; }
  45. }
  46. }