50 lines
1.2 KiB
C#
50 lines
1.2 KiB
C#
|
|
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; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|