using Common; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace UC.Models.Entity { [Table("users_login"), Key("Id")] public class Users_Login : BaseEntity { /// /// 登录账号 /// public string UserName { get; set; } /// /// 密码加密 /// public string PwdSalt { get; set; } /// /// 密码 /// public string Password { get; set; } /// /// 昵称 /// public string NickName { get; set; } /// /// 头像 /// public string Logo { get; set; } /// /// 电话号码 /// public string Phone { get; set; } /// /// qq号码 /// public string Qq { get; set; } /// /// 微信号码 /// public string WeChat { get; set; } /// /// 描述 /// public string Describes { get; set; } /// /// 用户登录码 /// public string LoginCode { get; set; } } }