26 lines
1.2 KiB
Go
26 lines
1.2 KiB
Go
// =================================================================================
|
||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||
// =================================================================================
|
||
|
||
package do
|
||
|
||
import (
|
||
"github.com/gogf/gf/v2/frame/g"
|
||
)
|
||
|
||
// RewardCallback is the golang structure of table reward_callback for DAO operations like Where/Data.
|
||
type RewardCallback struct {
|
||
g.Meta `orm:"table:reward_callback, do:true"`
|
||
Id interface{} //
|
||
Uid interface{} // 用户账号
|
||
OrderId interface{} // 订单号必须保证全局唯一(保证接口幂等)
|
||
PrizeChannelId interface{} // 券渠道 ID
|
||
PrizeId interface{} // 券 ID
|
||
PrizeType interface{} // 奖励类型,1 网鱼积分,2 网鱼经验值,3 网鱼兑换码
|
||
PrizeSubType interface{} // 奖励子类型,默认为 0,有多种子类型时可用,如 1,5 元网费充值券,2、满 30-5 满减券等
|
||
Num interface{} // 奖励个数,默认 1,比如经验值 10
|
||
CustomInfo interface{} // 透传字段 (json串)
|
||
AppId interface{} // 业务 id(标识业务方,由游戏人生提供)
|
||
InnerOrderId interface{} // 系统内部订单ID
|
||
}
|