mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-05-03 03:22:50 +08:00
19 lines
620 B
C#
19 lines
620 B
C#
namespace NetAdmin.Domain.Dto.Sys.Dept;
|
|
|
|
/// <summary>
|
|
/// 请求:启用/禁用部门
|
|
/// </summary>
|
|
public sealed record SetDeptEnabledReq : Sys_Dept
|
|
{
|
|
/// <inheritdoc cref="IFieldEnabled.Enabled" />
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
|
|
public override bool Enabled { get; init; }
|
|
|
|
/// <inheritdoc cref="EntityBase{T}.Id" />
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
|
|
public override long Id { get; init; }
|
|
|
|
/// <inheritdoc cref="IFieldVersion.Version" />
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
|
|
public override long Version { get; init; }
|
|
} |