实现任务绑定奖励的接口
This commit is contained in:
16
internal/model/do/task_rewards.go
Normal file
16
internal/model/do/task_rewards.go
Normal file
@ -0,0 +1,16 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
)
|
||||
|
||||
// TaskRewards is the golang structure of table task_rewards for DAO operations like Where/Data.
|
||||
type TaskRewards struct {
|
||||
g.Meta `orm:"table:task_rewards, do:true"`
|
||||
TaskId interface{} // 任务ID
|
||||
RewardId interface{} // 奖励ID
|
||||
}
|
||||
Reference in New Issue
Block a user