user_count.go 603 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 21 22 23 24 25 26 27
package model

import (
	"time"
)

const (
	//我喜欢的数量
	CountTypeLike = 1
	//我拉黑的数量
	CountTypeBlock = 2
	//我被喜欢的次数
	CountTypeLikeMe = 3
)

type UserCount struct {
	CreatedTime time.Time `json:"created_time"` // CreatedTime
	Id          int64     `json:"id"`           // id
	Num         int       `json:"num"`          // 数量
	Type        int       `json:"type"`         // 类型
	UpdatedTime time.Time `json:"updated_time"` // UpdatedTime
	UserId      int64     `json:"user_id"`      // user_id
}

func (u *UserCount) TableName() string {
	return "user_count"
}