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.
32 lines
1.3 KiB
32 lines
1.3 KiB
4 months ago
|
// =================================================================================
|
||
|
// 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"
|
||
|
)
|
||
|
|
||
|
// GameRechargeCopy2 is the golang structure of table game_recharge_copy2 for DAO operations like Where/Data.
|
||
|
type GameRechargeCopy2 struct {
|
||
|
g.Meta `orm:"table:game_recharge_copy2, do:true"`
|
||
|
Id interface{} //
|
||
|
UnitId interface{} // 账号
|
||
|
Channel interface{} // 渠道
|
||
|
Server interface{} // 区服
|
||
|
Amount interface{} // 充值金额
|
||
|
CreateTime *gtime.Time // 记录创建时间
|
||
|
ExternalCreateTime *gtime.Time // 订单创建时间
|
||
|
PayTime *gtime.Time // 订单支付时间
|
||
|
Status interface{} // 订单状态:1-创建, 2-成功, 3-失效, 100-失败,
|
||
|
Config interface{} // 配置Id
|
||
|
TradeNo interface{} // 游戏方订单号
|
||
|
ExternalTradeNo interface{} // 第三方订单号
|
||
|
TradeStatus interface{} // 第三方订单状态
|
||
|
BuyerId interface{} //
|
||
|
Platform interface{} // 充值平台
|
||
|
Remark interface{} // 手动修改成功理由
|
||
|
}
|