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
356 B
19 lines
356 B
package model |
|
|
|
import ( |
|
"go-common/library/time" |
|
) |
|
|
|
//Archive for db. |
|
type Archive struct { |
|
ID int64 `json:"id"` |
|
MID int64 `json:"mid"` |
|
State int `json:"state"` |
|
} |
|
|
|
// AidPubTime aid's pubdate and copyright |
|
type AidPubTime struct { |
|
Aid int64 `json:"aid"` |
|
PubDate time.Time `json:"pubdate"` |
|
Copyright int8 `json:"copyright"` |
|
}
|
|
|