by Robin at 20240628

This commit is contained in:
Leufolium 2024-06-28 23:25:22 +08:00
parent 3a83ade89f
commit 1575046a98
1 changed files with 5 additions and 0 deletions

View File

@ -2,6 +2,7 @@ package controller
import (
"service/api/errcode"
"service/api/message/response"
hvyogoproto "service/api/proto/hvyogo/proto"
"service/app/mix/service"
"service/bizcommon/util"
@ -64,6 +65,10 @@ func ApiHvyogoSingleDistribute(ctx *gin.Context) {
return
}
if data.StatusCode != response.StatusCodeSuccess {
ReplyErrorMsg(ctx, data.StatusText)
}
ReplyOk(ctx, data)
}