Change Info from string to short and update parameter name

Changed the Info property in InsertResultCommand from string? to short?.
Renamed the related parameter in InsertObjectProcedureHandler from pRESULT_INFO to pRESULT_INFO_ID and set its type to SqlDbType.SmallInt to match the new property type.
This commit is contained in:
2026-04-15 11:45:46 +02:00
parent ddb8b2673e
commit 2736a78d4f
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ public record InsertResultCommand : IInsertProcedure
public required RecStatus Status { get; set; }
public string? Header { get; set; }
public string? Body { get; set; }
public string? Info { get; set; }
public short? Info { get; set; }
public string? InfoDetail { get; set; }
public string? Error { get; set; }
public required ResultType Type { get; set; }