19 lines
638 B
Go
19 lines
638 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
|
|
NetbarAccount interface{} // 门店网关账号
|
|
StoreId interface{} // 门店 id
|
|
}
|