Files
arenax-server/internal/model/do/reward_callback.go

24 lines
1.1 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"
)
// 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串)
}