This commit is contained in:
PastSaid
2024-04-29 17:57:07 +08:00
parent e1e6cba475
commit 16fbd10312
123 changed files with 5923 additions and 18677 deletions

View File

@@ -0,0 +1,49 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace E_ZKEccSDK.Request
{
public class DepartmentUpdateRequest
{
/// <summary>
/// 部门编号。长度表示为1~40个字符只能包含字母和数字
/// 必填
/// </summary>
public string deptnumber { get; set; }
/// <summary>
/// 名称。
/// 长度表示为1~40个字符
/// (更新可以不填,新增必填)
/// </summary>
public string deptname { get; set; }
/// <summary>
/// 父部门编号。
/// 长度表示为1~40个字符
/// (更新可以不填,新增必填)
/// </summary>
public string parentnumber { get; set; }
/// <summary>
/// 部门地址
/// 可选
/// </summary>
public string deptaddr { get; set; }
/// <summary>
/// 联系人
/// 可选
/// </summary>
public string deptperson { get; set; }
/// <summary>
/// 联系电话
/// 可选
/// </summary>
public string deptphone { get; set; }
}
}