merge
This commit is contained in:
parent
d5f00f015d
commit
3ac4248f26
|
@ -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")
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue