mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
35 lines
733 B
C#
35 lines
733 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ShadowEditor.Model.System
|
|
{
|
|
/// <summary>
|
|
/// 组织机构编辑模型
|
|
/// </summary>
|
|
public class DepartmentEditModel
|
|
{
|
|
/// <summary>
|
|
/// 编号
|
|
/// </summary>
|
|
public string ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 父组织机构名称
|
|
/// </summary>
|
|
public string ParentID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 管理员用户ID
|
|
/// </summary>
|
|
public string AdminID { get; set; }
|
|
}
|
|
}
|