user_vip.go 766 Bytes
Newer Older
kzkzzzz's avatar
kzkzzzz committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
package model

import (
	"time"
)

type UserVip struct {
	CreatedTime         time.Time `json:"created_time"`           // CreatedTime
	ExpireAt            time.Time `json:"expire_at"`              // 过期时间
	Id                  int64     `json:"id"`                     // id
	Platform            int       `json:"platform"`               // 平台
	Type                int       `json:"type"`                   // 类型(1:用户充值 2:后台赠送)
	UpdatedTime         time.Time `json:"updated_time"`           // UpdatedTime
	UserId              int64     `json:"user_id"`                // 用户ID
	VipSubscribeOrderId int64     `json:"vip_subscribe_order_id"` // vip订阅订单
}

func (u *UserVip) TableName() string {
	return "user_vip"
}