Compare commits
6 Commits
e816340755
...
ddb8b2673e
| Author | SHA1 | Date | |
|---|---|---|---|
| ddb8b2673e | |||
| a70aee6e28 | |||
| f329543793 | |||
| 645891150c | |||
| 95cb34394c | |||
| 83d6832236 |
@@ -83,6 +83,11 @@ public class InsertObjectProcedureHandler(IRepository repo, IOptionsMonitor<SqlE
|
|||||||
.Add("pRESULT_INFO", request.Result?.Info)
|
.Add("pRESULT_INFO", request.Result?.Info)
|
||||||
.Add("pRESULT_INFO_DETAIL", request.Result?.InfoDetail)
|
.Add("pRESULT_INFO_DETAIL", request.Result?.InfoDetail)
|
||||||
.Add("pRESULT_ERROR", request.Result?.Error)
|
.Add("pRESULT_ERROR", request.Result?.Error)
|
||||||
|
.Add("pRESULT_REFERENCE1", request.Result?.Reference1)
|
||||||
|
.Add("pRESULT_REFERENCE2", request.Result?.Reference2)
|
||||||
|
.Add("pRESULT_REFERENCE3", request.Result?.Reference3)
|
||||||
|
.Add("pRESULT_REFERENCE4", request.Result?.Reference4)
|
||||||
|
.Add("pRESULT_REFERENCE5", request.Result?.Reference5)
|
||||||
.Add("pENDPOINT_PARAMS_ACTIVE", request.EndpointParams?.Active)
|
.Add("pENDPOINT_PARAMS_ACTIVE", request.EndpointParams?.Active)
|
||||||
.Add("pENDPOINT_PARAMS_DESCRIPTION", request.EndpointParams?.Description)
|
.Add("pENDPOINT_PARAMS_DESCRIPTION", request.EndpointParams?.Description)
|
||||||
.Add("pENDPOINT_PARAMS_GROUP_ID", request.EndpointParams?.GroupId, SqlDbType.SmallInt)
|
.Add("pENDPOINT_PARAMS_GROUP_ID", request.EndpointParams?.GroupId, SqlDbType.SmallInt)
|
||||||
|
|||||||
@@ -9,4 +9,9 @@ public record UpdateResultDto
|
|||||||
public string? Info { get; set; }
|
public string? Info { get; set; }
|
||||||
public string? InfoDetail { get; set; }
|
public string? InfoDetail { get; set; }
|
||||||
public string? Error { get; set; }
|
public string? Error { get; set; }
|
||||||
|
public string? Reference1 { get; set; }
|
||||||
|
public string? Reference2 { get; set; }
|
||||||
|
public string? Reference3 { get; set; }
|
||||||
|
public string? Reference4 { get; set; }
|
||||||
|
public string? Reference5 { get; set; }
|
||||||
}
|
}
|
||||||
@@ -91,7 +91,12 @@ public class UpdateObjectProcedureHandler(IRepository repo, IOptionsMonitor<SqlE
|
|||||||
.Add("pRESULT_BODY", request.Result.Body)
|
.Add("pRESULT_BODY", request.Result.Body)
|
||||||
.Add("pRESULT_INFO", request.Result.Info)
|
.Add("pRESULT_INFO", request.Result.Info)
|
||||||
.Add("pRESULT_INFO_DETAIL", request.Result.InfoDetail)
|
.Add("pRESULT_INFO_DETAIL", request.Result.InfoDetail)
|
||||||
.Add("pRESULT_ERROR", request.Result.Error);
|
.Add("pRESULT_ERROR", request.Result.Error)
|
||||||
|
.Add("pRESULT_REFERENCE1", request.Result.Reference1)
|
||||||
|
.Add("pRESULT_REFERENCE2", request.Result.Reference2)
|
||||||
|
.Add("pRESULT_REFERENCE3", request.Result.Reference3)
|
||||||
|
.Add("pRESULT_REFERENCE4", request.Result.Reference4)
|
||||||
|
.Add("pRESULT_REFERENCE5", request.Result.Reference5);
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -14,6 +14,11 @@ public record InsertResultCommand : IInsertProcedure
|
|||||||
public string? InfoDetail { get; set; }
|
public string? InfoDetail { get; set; }
|
||||||
public string? Error { get; set; }
|
public string? Error { get; set; }
|
||||||
public required ResultType Type { get; set; }
|
public required ResultType Type { get; set; }
|
||||||
|
public string? Reference1 { get; set; }
|
||||||
|
public string? Reference2 { get; set; }
|
||||||
|
public string? Reference3 { get; set; }
|
||||||
|
public string? Reference4 { get; set; }
|
||||||
|
public string? Reference5 { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class InsertResultProcedureHandler(ISender sender) : IRequestHandler<InsertResultCommand, long>
|
public class InsertResultProcedureHandler(ISender sender) : IRequestHandler<InsertResultCommand, long>
|
||||||
|
|||||||
@@ -33,6 +33,9 @@ public class RecActionView
|
|||||||
[Column("PROFILE_TYPE_ID")]
|
[Column("PROFILE_TYPE_ID")]
|
||||||
public ProfileType? ProfileType { get; set; }
|
public ProfileType? ProfileType { get; set; }
|
||||||
|
|
||||||
|
[Column("PROFILE_TYPE")]
|
||||||
|
public string? ProfileTypeName { get; set; }
|
||||||
|
|
||||||
[Column("SEQUENCE")]
|
[Column("SEQUENCE")]
|
||||||
public byte? Sequence { get; set; }
|
public byte? Sequence { get; set; }
|
||||||
|
|
||||||
|
|||||||
@@ -44,6 +44,9 @@ public class ResultView
|
|||||||
[Column("RESULT_BODY")]
|
[Column("RESULT_BODY")]
|
||||||
public string? Body { get; set; }
|
public string? Body { get; set; }
|
||||||
|
|
||||||
|
[Column("RESULT_INFO_ID")]
|
||||||
|
public short? InfoId { get; set; }
|
||||||
|
|
||||||
[Column("RESULT_INFO")]
|
[Column("RESULT_INFO")]
|
||||||
public string? Info { get; set; }
|
public string? Info { get; set; }
|
||||||
|
|
||||||
@@ -53,6 +56,21 @@ public class ResultView
|
|||||||
[Column("RESULT_ERROR")]
|
[Column("RESULT_ERROR")]
|
||||||
public string? Error { get; set; }
|
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")]
|
[Column("ADDED_WHO")]
|
||||||
public string? AddedWho { get; set; }
|
public string? AddedWho { get; set; }
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user