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
502 B
16 lines
502 B
package pay
|
|
|
|
import "github.com/golangkit/formatime"
|
|
|
|
type WxMiniPayDetail 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 *WxMiniPayDetail) TableName() string {
|
|
return "recook_pay_wxminipay_detail"
|
|
}
|