34 lines
746 B
Go
34 lines
746 B
Go
package entity
|
|
|
|
import "gitea.com/red-future/common/beans"
|
|
|
|
type walletLogCol struct {
|
|
beans.SQLBaseCol
|
|
UserID string
|
|
WalletID string
|
|
OrderNo string
|
|
TransactionNo string
|
|
Type string
|
|
Amount string
|
|
BalanceBefore string
|
|
BalanceAfter string
|
|
Currency string
|
|
Description string
|
|
ExtraData string
|
|
}
|
|
|
|
var WalletLogCol = walletLogCol{
|
|
SQLBaseCol: beans.DefSQLBaseCol,
|
|
UserID: "user_id",
|
|
WalletID: "wallet_id",
|
|
OrderNo: "order_no",
|
|
TransactionNo: "transaction_no",
|
|
Type: "type",
|
|
Amount: "amount",
|
|
BalanceBefore: "balance_before",
|
|
BalanceAfter: "balance_after",
|
|
Currency: "currency",
|
|
Description: "description",
|
|
ExtraData: "extra_data",
|
|
}
|