1
This commit is contained in:
49
00.SDK/E_ZKEccSDK/Request/DepartmentUpdateRequest.cs
Normal file
49
00.SDK/E_ZKEccSDK/Request/DepartmentUpdateRequest.cs
Normal 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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user