by Robin at 20240628
This commit is contained in:
parent
3a83ade89f
commit
1575046a98
|
@ -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)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue