2019-10-31 20:21:50 +08:00

45 lines
995 B
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;
using System.Threading.Tasks;
namespace ShadowEditor.Model.System
{
/// <summary>
/// 组织机构模型
/// </summary>
public class DepartmentModel
{
/// <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; }
/// <summary>
/// 管理员名称(不存数据库)
/// </summary>
public string AdminName { get; set; }
/// <summary>
/// 状态0-正常,-1-删除)
/// </summary>
public int Status { get; set; }
}
}