fix: 参数校验

This commit is contained in:
wangxinyu 2024-12-06 18:15:28 +08:00
parent d90d746c6b
commit 2a9379677b
4 changed files with 6 additions and 7 deletions

View File

@ -224,8 +224,7 @@ type ZoneRefundResp struct {
type ZoneRefundListReq struct {
base.BaseRequest
Zid int64 `json:"zid"` // 空间id
Mid int64 `json:"mid"` // 用户 id
BMid int64 `json:"b_mid"` // 主播 id
Uid int64 `json:"mid"` // 用户 id
AuditType int64 `json:"audit_type"` // 审核状态 1待处理2已处理
Offset int `json:"offset"`
Limit int `json:"limit"`

View File

@ -132,7 +132,7 @@ func ZoneRefundV2(ctx *gin.Context) {
func ZoneRefundList(ctx *gin.Context) {
req := ctx.MustGet("client_req").(*vasproto.ZoneRefundListReq)
if req.Mid <= 0 || req.BMid <= 0 {
if req.Mid <= 0 {
logger.Error("ZoneRefundList, invalid param, req: %v", util.ToJson(req))
ReplyErrCodeMsg(ctx, errcode.ErrCodeBadParam)
return
@ -169,7 +169,7 @@ func ZoneRefundList(ctx *gin.Context) {
func ZoneRefundInfo(ctx *gin.Context) {
req := ctx.MustGet("client_req").(*vasproto.ZoneRefundInfoReq)
if req.Mid <= 0 || req.AuditId == "" || len(req.AuditId) == 0 {
if req.AuditId == "" || len(req.AuditId) == 0 {
logger.Error("ZoneRefundInfo, invalid param, req: %v", util.ToJson(req))
ReplyErrCodeMsg(ctx, errcode.ErrCodeBadParam)
return
@ -194,7 +194,7 @@ func ZoneRefundInfo(ctx *gin.Context) {
func ZoneRefundAudit(ctx *gin.Context) {
req := ctx.MustGet("client_req").(*vasproto.ZoneRefundAuditReq)
if req.Mid <= 0 || req.AuditId == "" || len(req.AuditId) == 0 {
if req.AuditId == "" || len(req.AuditId) == 0 {
logger.Error("ZoneRefundAudit, invalid param, req: %v", util.ToJson(req))
ReplyErrCodeMsg(ctx, errcode.ErrCodeBadParam)
return

View File

@ -296,7 +296,7 @@ func (m *Mongo) GetZoneRefundList(ctx *gin.Context, bMid int64, refundsStatusLis
doc := m.GetZoneRefund()
query := qmgo.M{
"BMid": bMid,
"b_mid": bMid,
"refunds_status": qmgo.M{
"$in": refundsStatusList,
},

View File

@ -1100,7 +1100,7 @@ func (v *Vas) ZoneRefundList(ctx *gin.Context, req *vasproto.ZoneRefundListReq)
} else if req.AuditType == 2 {
refundsStatusList = append(refundsStatusList, dbstruct.RefundsApproved, dbstruct.RefundsRejected, dbstruct.RefundsOvertime)
}
list, err = v.store.GetZoneRefundList(ctx, req.BMid, refundsStatusList)
list, err = v.store.GetZoneRefundList(ctx, req.Mid, refundsStatusList)
if err != nil {
return
}