count.go 261 Bytes
Newer Older
hujiebin's avatar
hujiebin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
package user_e

import "git.hilo.cn/hilo-common/resource/mysql"

type CountType mysql.Type

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