using System; namespace CallCenterApi.Model { /// /// T_Sys_Users:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_Sys_Users { public T_Sys_Users() { } #region Model private long _f_id; private string _f_openid; private DateTime _f_createtime = DateTime.Now; private int? _f_type; private string _f_password; private string _f_name; private string _f_telphone; private int? _f_sex; private string _f_province; private string _f_city; private string _f_county; private string _f_address; private string _f_imgurl; /// /// /// public long F_Id { set { _f_id = value; } get { return _f_id; } } /// /// /// public string F_OpenId { set { _f_openid = value; } get { return _f_openid; } } /// /// /// public DateTime F_CreateTime { set { _f_createtime = value; } get { return _f_createtime; } } /// /// /// public int? F_Type { set { _f_type = value; } get { return _f_type; } } /// /// /// public string F_Password { set { _f_password = value; } get { return _f_password; } } /// /// /// public string F_Name { set { _f_name = value; } get { return _f_name; } } /// /// /// public string F_Telphone { set { _f_telphone = value; } get { return _f_telphone; } } /// /// /// public int? F_Sex { set { _f_sex = value; } get { return _f_sex; } } /// /// /// public string F_Province { set { _f_province = value; } get { return _f_province; } } /// /// /// public string F_City { set { _f_city = value; } get { return _f_city; } } /// /// /// public string F_County { set { _f_county = value; } get { return _f_county; } } /// /// /// public string F_Address { set { _f_address = value; } get { return _f_address; } } /// /// /// public string F_ImgUrl { set { _f_imgurl = value; } get { return _f_imgurl; } } #endregion Model } /// /// 微信1,邮件2,APP3,政务网&注册4,新城网格化5 /// public enum EnumUserType { wechat=1, email=2, app=3, zwwreg=4, xcgridding=5 } }