You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
// =================================================================================
|
|
|
|
// Code generated by GoFrame CLI tool. DO NOT EDIT.
|
|
|
|
// =================================================================================
|
|
|
|
|
|
|
|
package do
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
|
|
)
|
|
|
|
|
|
|
|
// GameRechargeLog is the golang structure of table game_recharge_log for DAO operations like Where/Data.
|
|
|
|
type GameRechargeLog struct {
|
|
|
|
g.Meta `orm:"table:game_recharge_log, do:true"`
|
|
|
|
Id interface{} //
|
|
|
|
UnitId interface{} // 账号
|
|
|
|
Channel interface{} // 渠道
|
|
|
|
Server interface{} // 区服
|
|
|
|
Amount interface{} // 充值金额
|
|
|
|
Config interface{} // 配置Id
|
|
|
|
CreateTime *gtime.Time // 记录创建时间
|
|
|
|
TradeNo interface{} // 游戏方订单号
|
|
|
|
Remark interface{} // 手动修改成功理由
|
|
|
|
User interface{} // 操作员
|
|
|
|
}
|