17 lines
534 B
Go
17 lines
534 B
Go
// =================================================================================
|
|
// 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
|
|
}
|