You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
485 B
33 lines
485 B
package model |
|
|
|
const ( |
|
// ID . |
|
ID = "id" |
|
// Area . |
|
Area = "area" |
|
// AreaReply . |
|
AreaReply = "reply" |
|
// AreaIMessage . |
|
AreaIMessage = "im" |
|
// AreaLiveDM . |
|
AreaLiveDM = "live_dm" |
|
// AreaMainSiteDM . |
|
AreaMainSiteDM = "danmu" |
|
|
|
// State . |
|
State = "state" |
|
// StateDefault . |
|
StateDefault = "default" |
|
// StateDeleted . |
|
StateDeleted = "deleted" |
|
|
|
// OrderASC . |
|
OrderASC = "ASC" |
|
// OrderDESC . |
|
OrderDESC = "DESC" |
|
|
|
// CTime . |
|
CTime = "ctime" |
|
// MTime . |
|
MTime = "mtime" |
|
)
|
|
|