Some checks failed
Build docker and publish / linux (1.24.5) (push) Failing after 40s
feat(pay): 添加支付API基础结构 feat(miniapp): 创建支付测试小程序页面与配置 feat(wechatpay): 配置微信支付参数与证书 fix(guild): 修复成员列表查询条件 docs: 更新代码规范文档与需求文档 style: 统一前后端枚举显示与注释格式 refactor(admin): 重构用户奖励发放接口参数处理 test(title): 添加称号效果参数验证测试
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 TableNamePaymentNotifyEvents = "payment_notify_events"
|
|
|
|
// PaymentNotifyEvents mapped from table <payment_notify_events>
|
|
type PaymentNotifyEvents struct {
|
|
ID int64 `gorm:"column:id;primaryKey;autoIncrement:true" json:"id"`
|
|
NotifyID string `gorm:"column:notify_id;not null" json:"notify_id"`
|
|
ResourceType string `gorm:"column:resource_type" json:"resource_type"`
|
|
EventType string `gorm:"column:event_type" json:"event_type"`
|
|
Summary string `gorm:"column:summary" json:"summary"`
|
|
Raw string `gorm:"column:raw" json:"raw"`
|
|
Processed bool `gorm:"column:processed;not null" json:"processed"`
|
|
CreatedAt time.Time `gorm:"column:created_at;not null;default:CURRENT_TIMESTAMP" json:"created_at"`
|
|
}
|
|
|
|
// TableName PaymentNotifyEvents's table name
|
|
func (*PaymentNotifyEvents) TableName() string {
|
|
return TableNamePaymentNotifyEvents
|
|
}
|