修改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

@ -43,6 +43,7 @@ type RewardsColumns struct {
CreatedAt string // 创建时间
UpdatedAt string // 更新时间
DeletedAt string // 删除时间(软删除)
PrizeId string // 券 id
}
// rewardsColumns holds the columns for the table rewards.
@ -69,6 +70,7 @@ var rewardsColumns = RewardsColumns{
CreatedAt: "created_at",
UpdatedAt: "updated_at",
DeletedAt: "deleted_at",
PrizeId: "prize_id",
}
// NewRewardsDao creates and returns a new DAO object for table data access.