anniversary.go 261 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 // 头像类型
	AnniversaryItemTypeBirthday AnniversaryItemType = 2 // 生日类型
hujiebin's avatar
hujiebin committed
9
)