2024-04-29 17:57:07 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
2024-05-15 13:56:09 +08:00
|
|
|
|
namespace E_ZKEcc.Request
|
2024-04-29 17:57:07 +08:00
|
|
|
|
{
|
|
|
|
|
|
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; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|