You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
545 B
17 lines
545 B
package pay
|
|
|
|
import "github.com/golangkit/formatime"
|
|
|
|
type UnionPayDetail struct {
|
|
ID uint `gorm:"column:id;primary_key"`
|
|
OrderID uint `gorm:"column:order_id"`
|
|
TradeNo string `gorm:"column:trade_no" json:"trade_no"`
|
|
PayInfo string `gorm:"column:pay_info" json:"payInfo"`
|
|
FrontUrl string `gorm:"column:front_url" json:"frontUrl"`
|
|
CreatedAt formatime.Second `gorm:"column:created_at"`
|
|
}
|
|
|
|
func (r *UnionPayDetail) TableName() string {
|
|
return "recook_pay_unionpay_detail"
|
|
}
|