using AI.Platform.Core.Entity; using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace ZhonTai.Admin.Contracts.Domain.VehicleTerminal.UserInfo { /// /// 用户信息表 /// [SugarTable(null, "用户信息表")] public class UserInfoEntity : EntityBaseLite { /// /// 用户ID /// public long Id { get; set; } /// /// 手机号 /// public string Mobile { get; set; } /// /// 用户名称 /// public string UserName { get; set; } /// /// 微信昵称 /// public string WxName { get; set; } /// /// 性别:0-未知,1-男,2-女 /// [SugarColumn(IsNullable = true)] public byte? Gender { get; set; } /// /// 出生年月 /// [SugarColumn(IsNullable = true)] public DateTime? BirthDate { get; set; } /// /// 站点ID /// [SugarColumn(IsNullable = true)] public long? SiteId { get; set; } /// /// 车牌号 /// [SugarColumn(IsNullable = true)] public string CarPlate { get; set; } /// /// 最后活跃时间 /// public DateTime? LastActiveTime { get; set; } /// /// UnionId /// public string UnionId { get; set; } /// /// 微信头像地址 /// public string AvatarUrl { get; set; } /// /// 最近行为 /// [SugarColumn(IsNullable = true)] public string RecentBehavior { get; set; } /// /// 注册时间 /// public DateTime? RegisterTime { get; set; } /// /// 发票抬头 /// [SugarColumn(IsNullable = true)] public string InvoiceTitle { get; set; } /// /// 用户类型,如:1-个人,2-企业 /// public byte? UserType { get; set; } [SugarColumn(IsNullable = true)] public Guid Buid { get; set; } /// /// 密码 /// [SugarColumn(IsNullable = true)] public string PassWord { get; set; } } }