Files
GateDge2023_ljy/00.SDK/E_ZKEccSDK/Request/DepartmentUpdateRequest.cs
PastSaid 16fbd10312 1
2024-04-29 17:57:07 +08:00

50 lines
1.2 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_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; }
}
}