using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DocumentServiceAPI.Application.WorkRemind.ViewMode
{
public class DocumentEmployeeInfoDTO
{
///
/// 员工ID
///
public int EmployeeId { get; set; }
///
/// 员工名称
///
public string EmployeeName { get; set; }
///
/// 工作职位
///
public string Job { get; set; }
///
/// 电话
///
public string Phone { get; set; }
///
/// 是否在工作
///
public int? IsWork { get; set; }
///
/// 离开时间
///
public DateTime? LeaveTime { get; set; }
///
/// 证件正面
///
public string CardPositive { get; set; }
///
/// 证件正面版本号
///
public string CardPositiveVersionNo { get; set; }
///
/// 证件正面大小
///
public int? CardPositiveSize { get; set; }
///
/// 最后更新时间
///
public DateTime? LastUpdateTime { get; set; }
///
/// 最后更新人
///
public string LastUpdateName { get; set; }
///
/// 用户名
///
public string UserName { get; set; }
///
/// 用户密码
///
public string UserPassWord { get; set; }
///
/// 登录时间
///
public DateTime? LoginTime { get; set; }
///
/// 是否登录
///
public bool? IsLogin { get; set; }
///
/// 建议标志
///
public int? AdviseFlag { get; set; }
///
/// 用户ID
///
public int? UserId { get; set; }
}
}