anniversary.go 415 Bytes
Newer Older
hujiebin's avatar
hujiebin committed
1 2 3 4 5 6 7
package cp_e

type AnniversaryItemType int

const (
	AnniversaryItemTypeNormal      AnniversaryItemType = 0 // 普通类型
	AnniversaryItemTypeAvatar      AnniversaryItemType = 1 // 头像类型
hujiebin's avatar
hujiebin committed
8 9 10
	AnniversaryItemTypeBirthday1   AnniversaryItemType = 2 // user1的生日
	AnniversaryItemTypeBirthday2   AnniversaryItemType = 3 // user2的生日
	AnniversaryItemTypeAnniversary AnniversaryItemType = 4 // 纪念日
hujiebin's avatar
hujiebin committed
11
)