mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-05-04 12:02:51 +08:00
27 lines
985 B
C#
27 lines
985 B
C#
namespace NetAdmin.Domain.Dto.Sys.Dic.Content;
|
|
|
|
/// <summary>
|
|
/// 响应:查询字典内容
|
|
/// </summary>
|
|
public record QueryDicContentRsp : Sys_DicContent
|
|
{
|
|
/// <inheritdoc cref="Sys_DicContent.CatalogId" />
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
|
|
public override long CatalogId { get; init; }
|
|
|
|
/// <inheritdoc cref="IFieldCreatedTime.CreatedTime" />
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
|
|
public override DateTime CreatedTime { get; init; }
|
|
|
|
/// <inheritdoc cref="Sys_DicContent.Key" />
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
|
public override string Key { get; init; }
|
|
|
|
/// <inheritdoc cref="Sys_DicContent.Value" />
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
|
public override string Value { get; init; }
|
|
|
|
/// <inheritdoc cref="IFieldVersion.Version" />
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
|
|
public override long Version { get; init; }
|
|
} |