using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace XGL.Models.Model
{
///
/// Users
///
public class sys_user
{
///
/// 工时
///
public string attr2 { get; set; }
///
/// 报工数量
///
public string number { get; set; }
///
/// 选中状态
///
public bool IsChecked { get; set; }
///
/// 编码
///
public int user_id { get; set; }
///
/// 岗位
///
public string post { get; set; }
///
/// 部门编码
///
public string dept_id { get; set; }
///
/// 用户名称
///
public string user_name { get; set; }
///
/// 昵称
///
public string nick_name { get; set; }
///
/// 用户类型(00系统用户)
///
public string user_type { get; set; }
///
/// 邮箱
///
public string email { get; set; }
///
/// 手机号
///
public string phonenumber { get; set; }
///
/// 用户性别(0男 1女 2未知)
///
public int sex { get; set; }
///
/// 头像地址
///
public string avatar { get; set; }
///
/// 密码
///
public string password { get; set; }
///
/// 帐号状态(0正常 1停用)
///
public int status { get; set; }
///
/// 删除标志(0代表存在 2代表删除)
///
public int? del_flag { get; set; }
///
/// 最后登录IP
///
public string login_ip { get; set; }
///
/// 最后登录时间
///
public DateTime? login_date { get; set; }
///
/// 创建人
///
public string create_by { get; set; }
///
/// 创建时间
///
public DateTime? create_time { get; set; }
///
/// 更新人
///
public string update_by { get; set; }
///
/// 更信任
///
public DateTime? update_time { get; set; }
///
/// 备注
///
public string remark { get; set; }
public string user_m_type { get; set; }
}
}