using Ant.Entity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MES.Production.Entity { /// /// 实体类YW_Tourist 。(属性说明自动提取数据库字段的描述信息) /// [Table("YW_Tourist")] public partial class EntYW_Tourist { public EntYW_Tourist() { } #region Model private int? _uid; private string _phone; private string _password; private string _login_salt; private string _uname; private string _email; private int? _sex; private string _headurl; private string _location; private int? _ctime; private string _api_key; private string _lang; private string _timezone; private int? _is_del; private string _first_letter; private string _openid; private decimal? _balance; /// /// /// [Column("uid", IsPrimaryKey = true), AutoIncrement] public int? uid { set { _uid = value; } get { return _uid; } } /// /// /// public string phone { set { _phone = value; } get { return _phone; } } /// /// /// public string password { set { _password = value; } get { return _password; } } /// /// /// public string login_salt { set { _login_salt = value; } get { return _login_salt; } } /// /// /// public string uname { set { _uname = value; } get { return _uname; } } /// /// /// public string email { set { _email = value; } get { return _email; } } /// /// /// public int? sex { set { _sex = value; } get { return _sex; } } /// /// /// public string HeadUrl { set { _headurl = value; } get { return _headurl; } } /// /// /// public string location { set { _location = value; } get { return _location; } } /// /// /// public int? ctime { set { _ctime = value; } get { return _ctime; } } /// /// /// public string api_key { set { _api_key = value; } get { return _api_key; } } /// /// /// public string lang { set { _lang = value; } get { return _lang; } } /// /// /// public string timezone { set { _timezone = value; } get { return _timezone; } } /// /// /// public int? is_del { set { _is_del = value; } get { return _is_del; } } /// /// /// public string first_letter { set { _first_letter = value; } get { return _first_letter; } } public string platform { get; set; } /// /// /// public string openid { set { _openid = value; } get { return _openid; } } /// /// /// public decimal? Balance { set { _balance = value; } get { return _balance; } } #endregion Model } }