用户增加parentid,组织增加负责人

This commit is contained in:
yubaolee
2023-12-14 21:43:42 +08:00
parent 099ea55a3d
commit 457458541b
5 changed files with 26 additions and 43 deletions

View File

@@ -99,6 +99,12 @@ namespace OpenAuth.Repository.Domain
/// </summary>
[Description("分类ID")]
public string TypeId { get; set; }
/// <summary>
/// 负责人ID
/// </summary>
[Description("负责人ID")]
public string ChairmanId { get; set; }
}
}

View File

@@ -84,6 +84,12 @@ namespace OpenAuth.Repository.Domain
/// </summary>
[Description("分类ID")]
public string TypeId { get; set; }
/// <summary>
/// 直接上级
/// </summary>
[Description("直接上级")]
public string ParentId { get; set; }
}
}