using BPA.KitChen.GroupMeal.Core.Entity.Base; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPA.KitChen.GroupMeal.Core.Entity { [SugarTable("BPA_PlatformMemberInfo")] public class BPA_PlatformMemberInfo: IBaseGroupIdEntity { /// /// /// [SugarColumn(IsNullable = true)] public string NickName { get; set; } /// /// 0=未知 1=男 2=女 /// public int Sex { get; set; } /// /// 头像 /// [SugarColumn(IsNullable = true)] public string HeadImgUrl { get; set; } /// /// 国家 /// [SugarColumn(IsNullable = true)] public string Country { get; set; } /// /// 省 /// [SugarColumn(IsNullable = true)] public string Province { get; set; } /// /// 市 /// [SugarColumn(IsNullable = true)] public string City { get; set; } /// /// 县(区) /// [SugarColumn(IsNullable = true)] public string County { get; set; } /// /// 具体地址 /// [SugarColumn(IsNullable = true)] public string Address { get; set; } /// /// 出生日期 /// public DateTime Birthday { get; set; } /// /// 电话 /// [SugarColumn(IsNullable = true)] public string Phone { get; set; } /// /// 真实姓名 /// [SugarColumn(IsNullable = true)] public string RealName { get; set; } /// /// 身份证号码 /// [SugarColumn(IsNullable = true)] public string CardNum { get; set; } /// /// 等级 /// [SugarColumn(IsNullable = true)] public string Level_Id { get; set; } /// /// 1.微信 2.支付宝 3.Pos 4 会员卡 /// public int PlatformType { get; set; } /// /// 平台会员ID /// [SugarColumn(IsNullable = true)] public string PlatformMemberId { get; set; } /// /// 基础会员表ID /// [SugarColumn(IsNullable = true)] public string MemberInfo_Id { get; set; } } }