namespace Learun.Application.Organization { /// /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园 /// Copyright (c) 2013-2018 北京泉江科技有限公司 /// 创建人:陈彬彬 /// 日 期:2018.03.27 /// 描 述:部门数据模型 /// public class DepartmentModel { /// /// 部门上级id /// public string parentId { get; set; } /// /// 公司主键 /// public string companyId { get; set; } /// /// 公司名字 /// public string name { get; set; } } }