You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- namespace Learun.Application.WeChat.WeChat
- {
- /// <summary>
- /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
- /// Copyright (c) 2013-2017
- /// 创 建:超级管理员
- /// 日 期: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; }
- }
- }
|