26 lines
666 B
C#
Raw Normal View History

2025-08-13 11:14:39 +08:00
namespace Learun.Application.Organization
{
/// <summary>
/// 版 本 PIT-ADMS V7.0.3 敏捷开发框架
/// Copyright (c) 2013-2018 Hexagon PPM
/// 创建人:研发部
/// 日 期2018.03.27
/// 描 述:部门数据模型
/// </summary>
public class DepartmentModel
{
/// <summary>
/// 部门上级id
/// </summary>
public string parentId { get; set; }
/// <summary>
/// 公司主键
/// </summary>
public string companyId { get; set; }
/// <summary>
/// 公司名字
/// </summary>
public string name { get; set; }
}
}