Merge branch 'feature-refund_v2-wxy-20241204' into test

This commit is contained in:
wangxinyu 2024-12-06 16:28:08 +08:00
commit f65a4464e1
2 changed files with 4 additions and 2 deletions

View File

@ -225,6 +225,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
AuditType int64 `json:"audit_type"` // 审核状态 1待处理2已处理
Offset int `json:"offset"`

View File

@ -676,12 +676,13 @@ func (s *CronService) ClearVeriCodeWrongTimes(ctx context.Context, param *xxl.Ru
return "vericode_wrong_times collection has been cleared"
}
func (s *CronService) UserRefundAuditTimes(ctx context.Context, param *xxl.RunReq) (msg string) {
func (s *CronService) UserRefundAuditTimes(param *xxl.RunReq) (msg string) {
logger.Info("task %v param: %v log_id: %v", param.ExecutorHandler, param.ExecutorParams, xxl.Int64ToStr(param.LogID))
logger.Info("user_refund_audit_times collection...")
err := _DefaultVas.UserRefundAuditTimes(&gin.Context{})
if err != nil {
return ""
logger.Error("user_refund_audit_times collection fail: %v", err)
return fmt.Sprintf("user_refund_audit_times collection fail: %v", err)
}
return "user_refund_audit_times collection has been "
}