Grp_TourClientList.cs 1.8 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. /// 关联表
  11. /// 关联 团组信息 客户资料库
  12. /// </summary>
  13. [SugarTable("Grp_TourClientList")]
  14. public class Grp_TourClientList : EntityBase
  15. {
  16. /// <summary>
  17. /// 团组Id(团组信息表)
  18. /// </summary>
  19. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  20. public int DiId { get; set; }
  21. /// <summary>
  22. /// 客户Id(客户资料表)
  23. /// </summary>
  24. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  25. public int ClientId { get; set; }
  26. /// <summary>
  27. /// 舱位类型Id (数据表Id)
  28. /// </summary>
  29. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  30. public int ShippingSpaceTypeId { get; set; }
  31. /// <summary>
  32. /// 舱位特殊需求
  33. /// </summary>
  34. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
  35. public string? ShippingSpaceSpecialNeeds { get; set; }
  36. /// <summary>
  37. /// 酒店特殊需求
  38. /// </summary>
  39. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
  40. public string? HotelSpecialNeeds { get; set; }
  41. /// <summary>
  42. /// 餐食特殊需求
  43. /// </summary>
  44. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
  45. public string? MealSpecialNeeds { get; set; }
  46. /// <summary>
  47. /// 是否陪同
  48. /// 1 否 2 是
  49. /// 默认:1
  50. /// </summary>
  51. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  52. public int IsAccompany { get; set; } = 1;
  53. }
  54. }