Files
kami_scripts/order/model/card_apple_history_info.gen.go

29 lines
1.1 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 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
}