Merge branch 'feature-refund_v2-wxy-20241204' into test
This commit is contained in:
commit
f65a4464e1
|
@ -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"`
|
||||
|
|
|
@ -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 "
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue