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

type AnniversaryItemType int

const (
hujiebin's avatar
hujiebin committed
6 7 8
	AnniversaryItemTypeNormal      AnniversaryItemType = 0 // 普通类型
	AnniversaryItemTypeAvatar      AnniversaryItemType = 1 // 头像类型
	AnniversaryItemTypeAnniversary AnniversaryItemType = 2 // 纪念日类型(一年一度,如生日/结婚纪念日)
hujiebin's avatar
hujiebin committed
9
)