修改tencent回调

This commit is contained in:
chy
2025-06-26 16:39:16 +08:00
parent 085102b99d
commit d45b8bfbbb
6 changed files with 115 additions and 14 deletions

View File

@ -0,0 +1,20 @@
package consts
const (
SignErr = 252151000 + iota
UserDayLimit
UserTotalLimit
BatchDayLimit
BatchTotalLimit
BatchOutDate
)
const (
SuccessMSG = "成功"
SignErrMSG = "签名错误"
UserDayLimitMSG = "达到用户个人日限"
UserTotalLimitMSG = "达到用户个人总限"
BatchDayLimitMSG = "达到该批次日限制"
BatchTotalLimitMSG = "达到该批次总限制"
BatchOutDateMSG = "批次、活动已过期"
)