using System;
|
|
|
|
|
|
namespace Basic.Model
|
|
{
|
|
/// <summary>
|
|
/// 管理员
|
|
/// </summary>
|
|
[Serializable]
|
|
public partial class manager
|
|
{
|
|
private int _id;
|
|
private int _role_id;
|
|
private int _role_type;
|
|
private int _shop_id;
|
|
private string _user_name;
|
|
private string _user_pwd;
|
|
private string _real_name;
|
|
private string _telephone;
|
|
private string _email;
|
|
private int _is_lock;
|
|
private DateTime _add_time;
|
|
|
|
/// <summary>
|
|
/// 自增ID
|
|
/// </summary>
|
|
public int id
|
|
{
|
|
set { _id = value; }
|
|
get { return _id; }
|
|
}
|
|
/// <summary>
|
|
/// 角色ID
|
|
/// </summary>
|
|
public int role_id
|
|
{
|
|
set { _role_id = value; }
|
|
get { return _role_id; }
|
|
}
|
|
/// <summary>
|
|
/// 角色类型
|
|
/// </summary>
|
|
public int role_type
|
|
{
|
|
set { _role_type = value; }
|
|
get { return _role_type; }
|
|
}
|
|
/// <summary>
|
|
/// 专营店ID
|
|
/// </summary>
|
|
public int shop_id
|
|
{
|
|
set { _shop_id = value; }
|
|
get { return _shop_id; }
|
|
}
|
|
/// <summary>
|
|
/// 用户名
|
|
/// </summary>
|
|
public string user_name
|
|
{
|
|
set { _user_name = value; }
|
|
get { return _user_name; }
|
|
}
|
|
/// <summary>
|
|
/// 用户密码
|
|
/// </summary>
|
|
public string user_pwd
|
|
{
|
|
set { _user_pwd = value; }
|
|
get { return _user_pwd; }
|
|
}
|
|
/// <summary>
|
|
/// 真实姓名
|
|
/// </summary>
|
|
public string real_name
|
|
{
|
|
set { _real_name = value; }
|
|
get { return _real_name; }
|
|
}
|
|
/// <summary>
|
|
/// 联系电话
|
|
/// </summary>
|
|
public string telephone
|
|
{
|
|
set { _telephone = value; }
|
|
get { return _telephone; }
|
|
}
|
|
/// <summary>
|
|
/// 邮箱
|
|
/// </summary>
|
|
public string email
|
|
{
|
|
set { _email = value; }
|
|
get { return _email; }
|
|
}
|
|
/// <summary>
|
|
/// 是否禁用
|
|
/// </summary>
|
|
public int is_lock
|
|
{
|
|
set { _is_lock = value; }
|
|
get { return _is_lock; }
|
|
}
|
|
/// <summary>
|
|
/// 系统获取时间
|
|
/// </summary>
|
|
public DateTime add_time
|
|
{
|
|
set { _add_time = value; }
|
|
get { return _add_time; }
|
|
}
|
|
}
|
|
}
|