using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.Model.Core { /// /// FreeSQL https://www.cnblogs.com/kellynic/p/10645049.html /// [SugarTable("CoreTeamModelUser")] public class TeamModelUser { public string PartitionKey { get; set; } public string RowKey { get; set; } /// /// 真实姓名 /// public string FullName { get; set; } /// /// 昵称 /// public string NickName { get; set; } /// /// 性别 /// public string Sex { get; set; } /// /// 手机号 /// public string Cellphone { get; set; } /// /// 邮箱 /// public string Email { get; set; } /// /// 醍摩豆ID /// public string TeamModelId { get; set; } /// /// 头像 /// public string Header { get; set; } /// /// /// public string CountryId { get; set; } /// /// 国家 /// public string CountryName { get; set; } /// /// /// public string ProvinceId { get; set; } /// /// 省 /// public string ProvinceName { get; set; } /// /// 市 /// public string CityId { get; set; } /// /// /// public string CityName { get; set; } /// /// 区县 /// public string DistrictId { get; set; } /// /// /// public string DistrictName { get; set; } /// /// 注册时间 /// public long RegisterTime { get; set; } public string CountryCode { get; set; } } }