mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-05-05 04:22:51 +08:00
17 lines
495 B
C#
17 lines
495 B
C#
using NetAdmin.Domain.DbMaps.Tpl;
|
|
|
|
namespace NetAdmin.Domain.Dto.Tpl.Example;
|
|
|
|
/// <summary>
|
|
/// 响应:查询示例
|
|
/// </summary>
|
|
public sealed record QueryExampleRsp : Tpl_Example
|
|
{
|
|
/// <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; }
|
|
} |