版本260406

This commit is contained in:
2026-04-06 22:04:05 +08:00
parent 7dc5e73af7
commit 0b150470be
216 changed files with 98993 additions and 33 deletions

View File

@@ -0,0 +1,42 @@
namespace OrpaonVision.Core.Configuration.Contracts;
/// <summary>
/// 规则版本对比结果。
/// </summary>
public sealed class RuleVersionCompareDto
{
/// <summary>
/// 机种编码。
/// </summary>
public string ProductTypeCode { get; init; } = string.Empty;
/// <summary>
/// 对比源版本号。
/// </summary>
public string SourceVersionNo { get; init; } = string.Empty;
/// <summary>
/// 对比目标版本号。
/// </summary>
public string TargetVersionNo { get; init; } = string.Empty;
/// <summary>
/// 源版本快照 JSON。
/// </summary>
public string SourceSnapshotJson { get; init; } = string.Empty;
/// <summary>
/// 目标版本快照 JSON。
/// </summary>
public string TargetSnapshotJson { get; init; } = string.Empty;
/// <summary>
/// 版本是否一致。
/// </summary>
public bool IsSame { get; init; }
/// <summary>
/// 对比摘要。
/// </summary>
public string Summary { get; init; } = string.Empty;
}