16 lines
298 B
Go
16 lines
298 B
Go
package consts
|
|
|
|
const (
|
|
// PageSize 分页长度
|
|
PageSize = 10
|
|
// SysNoticeType 系统通知
|
|
SysNoticeType = 1
|
|
// SysLetterType 系统私信
|
|
SysLetterType = 2
|
|
|
|
// EffectiveTypeStartEnd 按起止时间段
|
|
EffectiveTypeStartEnd = 1
|
|
// EffectiveTypeDate 按时间段
|
|
EffectiveTypeDate = 2
|
|
)
|