Files
GateDge2023_ljy/00.SDK/E_ZKEccSDK/Request/EmployeeUpdateRequest.cs
PastSaid 0a17c23e54 1
2024-05-15 13:56:09 +08:00

56 lines
1.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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