|
|
@@ -58,6 +58,12 @@ public class AdoS8ExceptionDetailDto : AdoS8ExceptionListItemDto
|
|
|
public DateTime? UpdatedAt { get; set; }
|
|
|
public long? ActiveFlowInstanceId { get; set; }
|
|
|
public string? ActiveFlowBizType { get; set; }
|
|
|
+ public long? VerifierId { get; set; }
|
|
|
+ public string? VerifierName { get; set; }
|
|
|
+ public DateTime? VerificationAssignedAt { get; set; }
|
|
|
+ public DateTime? VerifiedAt { get; set; }
|
|
|
+ public string? VerificationResult { get; set; }
|
|
|
+ public string? VerificationRemark { get; set; }
|
|
|
}
|
|
|
|
|
|
public class AdoS8ManualReportCreateDto
|
|
|
@@ -222,3 +228,19 @@ public class AdoS8OrderGridDto
|
|
|
public List<AdoS8CategorySummary> ByCategory { get; set; } = new();
|
|
|
public List<AdoS8DeptSummary> ByDept { get; set; } = new();
|
|
|
}
|
|
|
+
|
|
|
+public class AdoS8SubmitVerificationDto
|
|
|
+{
|
|
|
+ public long VerifierId { get; set; }
|
|
|
+ public string? Remark { get; set; }
|
|
|
+}
|
|
|
+
|
|
|
+public class AdoS8ApproveVerificationDto
|
|
|
+{
|
|
|
+ public string? Remark { get; set; }
|
|
|
+}
|
|
|
+
|
|
|
+public class AdoS8RejectVerificationDto
|
|
|
+{
|
|
|
+ public string Remark { get; set; } = string.Empty;
|
|
|
+}
|