11 lines
167 B
Go
11 lines
167 B
Go
package consts
|
|
|
|
const (
|
|
// PageSize 分页长度
|
|
PageSize = 10
|
|
// SysNoticeType 系统通知
|
|
SysNoticeType = 1
|
|
// SysLetterType 系统私信
|
|
SysLetterType = 2
|
|
)
|