Skip to content

Commit

Permalink
新增和修改实体接口新增姓名属性
Browse files Browse the repository at this point in the history
  • Loading branch information
zhontai committed Oct 17, 2024
1 parent 747e4e0 commit 6195238
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/modules/admin/ZhonTai.Admin/Core/Entities/IData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,6 @@ public interface IData
/// 拥有者部门Id
/// </summary>
long? OwnerOrgId { get; set; }

string OwnerOrgName { get; set; }
}
7 changes: 7 additions & 0 deletions src/modules/admin/ZhonTai.Admin/Core/Entities/IEntityAdd.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,17 @@ public interface IEntityAdd<TKey> where TKey : struct
/// 创建者用户Id
/// </summary>
long? CreatedUserId { get; set; }

/// <summary>
/// 创建者
/// </summary>
string CreatedUserName { get; set; }

/// <summary>
/// 创建者姓名
/// </summary>
string CreatedUserRealName { get; set; }

/// <summary>
/// 创建时间
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,17 @@ public interface IEntityUpdate<TKey> where TKey : struct
/// 修改者Id
/// </summary>
long? ModifiedUserId { get; set; }

/// <summary>
/// 修改者
/// </summary>
string ModifiedUserName { get; set; }

/// <summary>
/// 修改者姓名
/// </summary>
string ModifiedUserRealName { get; set; }

/// <summary>
/// 修改时间
/// </summary>
Expand Down

0 comments on commit 6195238

Please sign in to comment.