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:
@@ -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; }
|
||||
|
||||
Reference in New Issue
Block a user