namespace Learun.Application.WeChat.WeChat { /// /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园 /// Copyright (c) 2013-2017 /// 创 建:超级管理员 /// 日 期:2017-09-22 12:01 /// 描 述:部门实体类 /// public class WXDepartmentEntity { /// /// 部门名称 /// public string name { get; set; } /// /// 父部门id /// public int parentid { get; set; } /// /// 在父部门中的次序值 /// public int? order { get; set; } /// /// 部门id /// public int id { get; set; } } }