Res_AskData.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. /// </summary>
  22. [SugarColumn(IsNullable =true,ColumnDataType ="varchar(100)")]
  23. public string Country { get; set; }
  24. /// <summary>
  25. /// 地区
  26. /// </summary>
  27. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
  28. public string Area { get; set; }
  29. /// <summary>
  30. /// 公务方名称
  31. /// </summary>
  32. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
  33. public string UnitName { get; set; }
  34. /// <summary>
  35. /// 涉及领域
  36. /// </summary>
  37. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
  38. public string Field { get; set; }
  39. /// <summary>
  40. /// 话术范例
  41. /// </summary>
  42. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
  43. public string TalkCase { get; set; }
  44. }
  45. }