Files
arenax-server/internal/model/do/user_task_rewards.go
2025-07-03 13:40:53 +08:00

31 lines
1.4 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package do
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// UserTaskRewards is the golang structure of table user_task_rewards for DAO operations like Where/Data.
type UserTaskRewards struct {
g.Meta `orm:"table:user_task_rewards, do:true"`
Id interface{} // 用户任务奖励记录唯一标识符
UserTaskId interface{} // 关联用户任务记录ID
RewardId interface{} // 奖励ID
RewardName interface{} // 奖励名称冗余字段
Status interface{} // 状态1=待用户完成任务2=待领取3=已领取, 待兑换4=已过期5=发放失败, 6=结束
Remark interface{} // 备注或失败原因
ExternalOrderId interface{} // 第三方发放平台的订单ID
InnerOrderId interface{} // 系统内部订单ID
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 更新时间
DeletedAt *gtime.Time // 软删除时间
ExpiredAt *gtime.Time // 奖励过期时间
IssueQuantity interface{} //
Source interface{} // 来源 1:系统 2门店
RewardTypeId interface{} // 奖励类型 id
}