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.
14 lines
336 B
14 lines
336 B
package newertehui
|
|
|
|
import "github.com/golangkit/formatime"
|
|
|
|
type Info struct {
|
|
ID uint `gorm:"column:id" json:"id"`
|
|
CouponID uint `gorm:"column:coupon_id" json:"couponId"`
|
|
CreatedAt formatime.Second `gorm:"created_at" json:"-"`
|
|
}
|
|
|
|
func (*Info) TableName() string {
|
|
return "recook_newertehui_info"
|
|
}
|