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.

16 lines
496 B

package pay
import "github.com/golangkit/formatime"
type WxH5PayDetail struct {
ID uint `gorm:"column:id;primary_key"`
OrderID uint `gorm:"column:order_id"`
TradeNo string `gorm:"column:trade_no" json:"trade_no"`
CreateOrderSign string `gorm:"column:create_order_sign"`
CreatedAt formatime.Second `gorm:"column:created_at"`
}
func (r *WxH5PayDetail) TableName() string {
return "recook_pay_wxh5pay_detail"
}