mirror of
https://git.oceanpay.cc/danial/kami_scripts.git
synced 2025-12-18 22:49:25 +00:00
29 lines
1.1 KiB
Go
29 lines
1.1 KiB
Go
// Code generated by gorm.io/gen. DO NOT EDIT.
|
||
// Code generated by gorm.io/gen. DO NOT EDIT.
|
||
// Code generated by gorm.io/gen. DO NOT EDIT.
|
||
|
||
package model
|
||
|
||
import (
|
||
"time"
|
||
)
|
||
|
||
const TableNameCardAppleHistoryInfo = "card_apple_history_info"
|
||
|
||
// CardAppleHistoryInfo mapped from table <card_apple_history_info>
|
||
type CardAppleHistoryInfo struct {
|
||
ID int32 `gorm:"column:id;primaryKey;autoIncrement:true" json:"id"`
|
||
AccountID string `gorm:"column:account_id" json:"account_id"`
|
||
OrderNo string `gorm:"column:order_no;not null" json:"order_no"`
|
||
RechargeID int32 `gorm:"column:recharge_id" json:"recharge_id"`
|
||
Operation string `gorm:"column:operation;comment:操作:created、failed、recharging" json:"operation"` // 操作:created、failed、recharging
|
||
Remark string `gorm:"column:remark" json:"remark"`
|
||
CreatedAt time.Time `gorm:"column:created_at" json:"created_at"`
|
||
AccountName string `gorm:"column:account_name" json:"account_name"`
|
||
}
|
||
|
||
// TableName CardAppleHistoryInfo's table name
|
||
func (*CardAppleHistoryInfo) TableName() string {
|
||
return TableNameCardAppleHistoryInfo
|
||
}
|