This commit is contained in:
lwl0608 2024-08-27 17:10:20 +08:00
parent d5f00f015d
commit 3ac4248f26
2 changed files with 2 additions and 2 deletions

View File

@ -345,7 +345,7 @@ func Init(r *gin.Engine) {
opVasPayGroup.POST("zone_refund_list", middleware.JSONParamValidator(zoneproto.OpZoneRefundListParam{}), OpZoneRefundList)
opVasPayGroup.POST("manual_unlock_wechat", middleware.JSONParamValidator(zoneproto.OpManualUnlockWechatParam{}), OpManualUnlockWechat)
opVasPayGroup.POST("rollback_zone_exit_status", middleware.JSONParamValidator(zoneproto.OpRollbackZoneExitStatusParam{}), OpRollbackZoneAdmissionExitStatus)
opVasPayGroup.POST("rollback_zone_refund_status", middleware.JSONParamValidator(zoneproto.OpRollbackZoneRefundStatusParam{}), OpRollbackZoneRefundExitStatus)
opVasPayGroup.POST("rollback_zone_refund_status", middleware.JSONParamValidator(zoneproto.OpRollbackZoneRefundStatusParam{}), OpRollbackZoneRefundStatus)
// 慧用工
extHvyogoGroup := r.Group("/ext/hvyogo")

View File

@ -91,7 +91,7 @@ func OpRollbackZoneAdmissionExitStatus(ctx *gin.Context) {
ReplyOk(ctx, nil)
}
func OpRollbackZoneRefundExitStatus(ctx *gin.Context) {
func OpRollbackZoneRefundStatus(ctx *gin.Context) {
req := ctx.MustGet("client_req").(*zoneproto.OpRollbackZoneRefundStatusParam)
ec, err := service.DefaultService.OpRollbackZoneRefundStatus(ctx, req)
if ec != errcode.ErrCodeVasSrvOk {