14 lines
452 B
Go
14 lines
452 B
Go
package entity
|
|
|
|
import "github.com/gogf/gf/v2/os/gtime"
|
|
|
|
type PayNotifyLog struct {
|
|
Id int64 `orm:"id" json:"id"`
|
|
OrderNo string `orm:"order_no" json:"order_no"`
|
|
Body string `orm:"body" json:"body"`
|
|
Sign string `orm:"sign" json:"sign"`
|
|
RemoteIp string `orm:"remote_ip" json:"remote_ip"`
|
|
Status string `orm:"status" json:"status"`
|
|
CreatedAt *gtime.Time `orm:"created_at" json:"created_at"`
|
|
}
|