using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace E_ZKEcc.Domian
{
[Serializable]
public class EmployeeDomain
{
///
/// 人员编号 长度为1~24个字符 必填
///
public string pin { get; set; }
///
/// 名称。长度为1~20个字符
///
public string name { get; set; }
///
/// 人员所属部门编号(更新可以不填,新增必填)
///
public string deptnumber { get; set; }
///
/// 性别 。'M'表示男,'F'表示女 允许值: 'M', 'F'
///
public string gender { get; set; }
///
/// 身份证号
///
public string identitycard { get; set; }
///
/// 人员自助密码
///
public string selfpassword { get; set; }
///
/// 人员是否考勤
///
public int? att { get; set; }
///
/// 验证方式
///
public int? comverifys { get; set; }
///
/// 比对照片信息,BASE64格式
///
public string enrollpic { get; set; }
}
}