Add InfoId and Reference fields to ResultView model
Added InfoId and Reference1–Reference5 properties to the ResultView class, each mapped to corresponding database columns. These fields enable storage and retrieval of additional result-related information and references.
This commit is contained in:
@@ -44,6 +44,9 @@ public class ResultView
|
||||
[Column("RESULT_BODY")]
|
||||
public string? Body { get; set; }
|
||||
|
||||
[Column("RESULT_INFO_ID")]
|
||||
public short? InfoId { get; set; }
|
||||
|
||||
[Column("RESULT_INFO")]
|
||||
public string? Info { get; set; }
|
||||
|
||||
@@ -53,6 +56,21 @@ public class ResultView
|
||||
[Column("RESULT_ERROR")]
|
||||
public string? Error { get; set; }
|
||||
|
||||
[Column("REFERENCE1")]
|
||||
public string? Reference1 { get; set; }
|
||||
|
||||
[Column("REFERENCE2")]
|
||||
public string? Reference2 { get; set; }
|
||||
|
||||
[Column("REFERENCE3")]
|
||||
public string? Reference3 { get; set; }
|
||||
|
||||
[Column("REFERENCE4")]
|
||||
public string? Reference4 { get; set; }
|
||||
|
||||
[Column("REFERENCE5")]
|
||||
public string? Reference5 { get; set; }
|
||||
|
||||
[Column("ADDED_WHO")]
|
||||
public string? AddedWho { get; set; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user