mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-08-03 02:18:00 +08:00
11 lines
294 B
C#
11 lines
294 B
C#
namespace NetAdmin.Domain.Dto.Sys.Dept;
|
|
|
|
/// <summary>
|
|
/// 请求:查询部门
|
|
/// </summary>
|
|
public sealed record QueryDeptReq : Sys_Dept
|
|
{
|
|
/// <inheritdoc cref="EntityBase{T}.Id" />
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
|
|
public override long Id { get; init; }
|
|
} |