You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

96 lines
2.7 KiB

  1. using BPA.KitChen.GroupMeal.Core.Entity.Base;
  2. using SqlSugar;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPA.KitChen.GroupMeal.Core.Entity
  9. {
  10. [SugarTable("BPA_PlatformMemberInfo")]
  11. public class BPA_PlatformMemberInfo: IBaseGroupIdEntity
  12. {
  13. /// <summary>
  14. ///
  15. /// </summary>
  16. [SugarColumn(IsNullable = true)]
  17. public string NickName { get; set; }
  18. /// <summary>
  19. /// 0=未知 1=男 2=女
  20. /// </summary>
  21. public int Sex { get; set; }
  22. /// <summary>
  23. /// 头像
  24. /// </summary>
  25. [SugarColumn(IsNullable = true)]
  26. public string HeadImgUrl { get; set; }
  27. /// <summary>
  28. /// 国家
  29. /// </summary>
  30. [SugarColumn(IsNullable = true)]
  31. public string Country { get; set; }
  32. /// <summary>
  33. /// 省
  34. /// </summary>
  35. [SugarColumn(IsNullable = true)]
  36. public string Province { get; set; }
  37. /// <summary>
  38. /// 市
  39. /// </summary>
  40. [SugarColumn(IsNullable = true)]
  41. public string City { get; set; }
  42. /// <summary>
  43. /// 县(区)
  44. /// </summary>
  45. [SugarColumn(IsNullable = true)]
  46. public string County { get; set; }
  47. /// <summary>
  48. /// 具体地址
  49. /// </summary>
  50. [SugarColumn(IsNullable = true)]
  51. public string Address { get; set; }
  52. /// <summary>
  53. /// 出生日期
  54. /// </summary>
  55. public DateTime Birthday { get; set; }
  56. /// <summary>
  57. /// 电话
  58. /// </summary>
  59. [SugarColumn(IsNullable = true)]
  60. public string Phone { get; set; }
  61. /// <summary>
  62. /// 真实姓名
  63. /// </summary>
  64. [SugarColumn(IsNullable = true)]
  65. public string RealName { get; set; }
  66. /// <summary>
  67. /// 身份证号码
  68. /// </summary>
  69. [SugarColumn(IsNullable = true)]
  70. public string CardNum { get; set; }
  71. /// <summary>
  72. /// 等级
  73. /// </summary>
  74. [SugarColumn(IsNullable = true)]
  75. public string Level_Id { get; set; }
  76. /// <summary>
  77. /// 1.微信 2.支付宝 3.Pos 4 会员卡
  78. /// </summary>
  79. public int PlatformType { get; set; }
  80. /// <summary>
  81. /// 平台会员ID
  82. /// </summary>
  83. [SugarColumn(IsNullable = true)]
  84. public string PlatformMemberId { get; set; }
  85. /// <summary>
  86. /// 基础会员表ID
  87. /// </summary>
  88. [SugarColumn(IsNullable = true)]
  89. public string MemberInfo_Id { get; set; }
  90. }
  91. }