| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package types
- type MType int
- const (
- TextMType MType = iota
- )
- type ChatType int
- const (
- GroupChatType ChatType = iota + 1
- SingleChatType
- )
- type ContentType int
- const (
- ContentChatMsg ContentType = iota
- ContentMakeRead
- )
- type PostVisibleT uint8
- const (
- PostVisitPublic PostVisibleT = 90
- PostVisitPrivate PostVisibleT = 0
- PostVisitFriend PostVisibleT = 50
- PostVisitFollowing PostVisibleT = 60
- )
- type PostContentT int
- const (
- // 类型,1标题,2文字段落,3图片地址,4视频地址,5语音地址,6链接地址,7附件资源
- ContentTypeTitle PostContentT = iota + 1
- ContentTypeText
- ContentTypeImage
- ContentTypeVideo
- ContentTypeAudio
- ContentTypeLink
- ContentTypeAttachment
- ContentTypeChargeAttachment
- )
|