32 lines
804 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 SqlSugar;
namespace Learun.Application.WeChat.WeChat
{
/// <summary>
/// 版 本 Learun-ADMS V6.1.6.0 敏捷开发框架
/// Copyright (c) 2013-2017 Hexagon PPM
/// 创 建:超级管理员
/// 日 期2017-09-22 12:01
/// 描 述:部门实体类
/// </summary>
public class WXDepartmentEntity
{
/// <summary>
/// 部门名称
/// </summary>
public string name { get; set; }
/// <summary>
/// 父部门id
/// </summary>
public int parentid { get; set; }
/// <summary>
/// 在父部门中的次序值
/// </summary>
public int? order { get; set; }
/// <summary>
/// 部门id
/// </summary>
public int id { get; set; }
}
}