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.
 
 
 
 
 
 

26 line
702 B

  1. namespace Learun.Application.Organization
  2. {
  3. /// <summary>
  4. /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
  5. /// Copyright (c) 2013-2018 北京泉江科技有限公司
  6. /// 创建人:陈彬彬
  7. /// 日 期:2018.03.27
  8. /// 描 述:部门数据模型
  9. /// </summary>
  10. public class DepartmentModel
  11. {
  12. /// <summary>
  13. /// 部门上级id
  14. /// </summary>
  15. public string parentId { get; set; }
  16. /// <summary>
  17. /// 公司主键
  18. /// </summary>
  19. public string companyId { get; set; }
  20. /// <summary>
  21. /// 公司名字
  22. /// </summary>
  23. public string name { get; set; }
  24. }
  25. }