28 lines
949 B
Go
28 lines
949 B
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 TableNameOrderNotify = "order_notify"
|
|
|
|
// OrderNotify mapped from table <order_notify>
|
|
type OrderNotify struct {
|
|
ID uint64 `gorm:"column:id;primaryKey;autoIncrement:true" json:"id"`
|
|
OrderNo string `gorm:"column:order_no;not null" json:"order_no"`
|
|
OutRequestNo string `gorm:"column:out_request_no;not null" json:"out_request_no"`
|
|
Request string `gorm:"column:request;not null" json:"request"`
|
|
Responses string `gorm:"column:responses" json:"responses"`
|
|
CreateTime *time.Time `gorm:"column:create_time;not null" json:"create_time"`
|
|
UpdateTime *time.Time `gorm:"column:update_time" json:"update_time"`
|
|
}
|
|
|
|
// TableName OrderNotify's table name
|
|
func (*OrderNotify) TableName() string {
|
|
return TableNameOrderNotify
|
|
}
|