We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11e5d8d commit b66e731Copy full SHA for b66e731
2 files changed
backend/modules/evaluation/application/convertor/evaluation_set/evaluation_set.go
@@ -146,6 +146,7 @@ func UploadAttachmentDetailDO2DTO(do *entity.UploadAttachmentDetail) *app_eval_s
146
OriginVideo: common.ConvertVideoDO2DTO(do.OriginVideo),
147
Video: common.ConvertVideoDO2DTO(do.Video),
148
ErrMsg: do.ErrMsg,
149
+ ErrorType: gptr.Of(dataset.ItemErrorType(gptr.Indirect(do.ErrorType))),
150
}
151
152
backend/modules/evaluation/domain/entity/evaluation_set.go
@@ -217,6 +217,7 @@ type UploadAttachmentDetail struct {
217
OriginVideo *Video
218
Video *Video
219
ErrMsg *string
220
+ ErrorType *ItemErrorType
221
222
223
type FieldWriteOption struct {
0 commit comments