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.
19 lines
429 B
19 lines
429 B
package web |
|
|
|
// ArcMsg archive . |
|
type ArcMsg struct { |
|
Action string `json:"action"` |
|
Table string `json:"table"` |
|
New *ArchiveSub `json:"new"` |
|
Old *ArchiveSub `json:"old"` |
|
} |
|
|
|
// ArchiveSub archive . |
|
type ArchiveSub struct { |
|
Aid int64 `json:"aid"` |
|
Mid int64 `json:"mid"` |
|
PubTime string `json:"pubtime"` |
|
CTime string `json:"ctime"` |
|
MTime string `json:"mtime"` |
|
State int `json:"state"` |
|
}
|
|
|