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.

30 lines
1.8 KiB

4 months ago
// =================================================================================
3 months ago
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
4 months ago
// =================================================================================
package entity
import (
"github.com/gogf/gf/v2/os/gtime"
)
// GameRechargeCopy1 is the golang structure for table game_recharge_copy1.
type GameRechargeCopy1 struct {
Id int64 `json:"id" description:""`
UnitId int64 `json:"unitId" description:"账号"`
Channel string `json:"channel" description:"渠道"`
Server int `json:"server" description:"区服"`
Amount int `json:"amount" description:"充值金额"`
CreateTime *gtime.Time `json:"createTime" description:"记录创建时间"`
ExternalCreateTime *gtime.Time `json:"externalCreateTime" description:"订单创建时间"`
PayTime *gtime.Time `json:"payTime" description:"订单支付时间"`
Status int `json:"status" description:"订单状态:1-创建, 2-成功, 3-失效, 100-失败,"`
4 months ago
Config int `json:"config" description:"配置Id"`
TradeNo string `json:"tradeNo" description:"游戏方订单号"`
ExternalTradeNo string `json:"externalTradeNo" description:"第三方订单号"`
TradeStatus string `json:"tradeStatus" description:"第三方订单状态"`
BuyerId string `json:"buyerId" description:""`
Platform int `json:"platform" description:"充值平台"`
Remark string `json:"remark" description:"手动修改成功理由"`
}