using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CallCenterApi.Model
{
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_cuscode;
///
/// 自增id
///
public long F_Id
{
set { _f_id = value; }
get { return _f_id; }
}
///
/// 微信openid,微博号
///
public string F_OpenId
{
set { _f_openid = value; }
get { return _f_openid; }
}
///
/// 创建时间
///
public DateTime F_CreateTime
{
set { _f_createtime = value; }
get { return _f_createtime; }
}
///
/// 1微信2微博
///
public int? F_Type
{
set { _f_type = value; }
get { return _f_type; }
}
///
/// 登录的公司code
///
public string F_CusCode
{
get
{
return _f_cuscode;
}
set
{
_f_cuscode = value;
}
}
#endregion Model
}
}