Res_AskData.cs 1.6 KB

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