using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CallCenterApi.Model
{
public partial class T_Email_EmailList
{
public T_Email_EmailList()
{ }
#region Model
private int _e_id;
private string _e_email;
private string _e_name;
private int? _e_state;
private DateTime? _e_addtime;
private int? _f_userid;
private string _f_username;
///
/// id,自增
///
public int E_Id
{
set { _e_id = value; }
get { return _e_id; }
}
///
/// 导入邮箱
///
public string E_Email
{
set { _e_email = value; }
get { return _e_email; }
}
///
/// 导入姓名
///
public string E_Name
{
set { _e_name = value; }
get { return _e_name; }
}
///
/// 状态
///
public int? E_State
{
set { _e_state = value; }
get { return _e_state; }
}
///
/// 添加时间
///
public DateTime? E_AddTime
{
set { _e_addtime = value; }
get { return _e_addtime; }
}
///
///
///
public int? F_UserId
{
set { _f_userid = value; }
get { return _f_userid; }
}
///
///
///
public string F_UserName
{
set { _f_username = value; }
get { return _f_username; }
}
#endregion Model
}
}