Grp_DeleMeetingNeeds.cs 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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.Groups
  7. {
  8. /// <summary>
  9. /// 团组会议需求表
  10. /// </summary>
  11. [SugarTable("Grp_DeleMeetingNeeds")]
  12. public class Grp_DeleMeetingNeeds:EntityBase
  13. {
  14. /// <summary>
  15. /// 团组公共需求表Id
  16. /// </summary>
  17. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  18. public int DeleClientNeedId { get; set; }
  19. /// <summary>
  20. /// 会议类型
  21. /// </summary>
  22. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  23. public int MeetingType { get; set; }
  24. /// <summary>
  25. /// 开会时间
  26. /// </summary>
  27. [SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
  28. public DateTime MeetingDt { get; set; }
  29. /// <summary>
  30. /// 开会时长
  31. /// </summary>
  32. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  33. public string MeethingSeptal { get; set; }
  34. /// <summary>
  35. /// 参会人数
  36. /// </summary>
  37. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  38. public int Person { get; set; }
  39. /// <summary>
  40. /// 会议金额预算
  41. /// </summary>
  42. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  43. public string MeetingPrice { get; set; }
  44. /// <summary>
  45. /// 联系人
  46. /// </summary>
  47. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")]
  48. public string Contact { get; set; }
  49. /// <summary>
  50. /// 联系方式
  51. /// </summary>
  52. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")]
  53. public string Mobile { get; set; }
  54. /// <summary>
  55. /// 其他需求
  56. /// </summary>
  57. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
  58. public string NeedsChoose { get; set; }
  59. }
  60. }