mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-02-03 02:54:41 +08:00
9 lines
138 B
Go
9 lines
138 B
Go
|
package consts
|
||
|
|
||
|
// 公告类型
|
||
|
const (
|
||
|
NoticeTypeNotify = 1 // 通知
|
||
|
NoticeTypeNotice = 2 // 公告
|
||
|
NoticeTypeLetter = 3 // 私信
|
||
|
)
|