2017-11-08 09:50:44 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2017-12-01 06:04:31 +00:00
|
|
|
|
|
|
|
util "git.loafle.net/overflow/overflow_commons_go/util"
|
2017-11-08 09:50:44 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type MetaCrawler struct {
|
2017-12-01 06:04:31 +00:00
|
|
|
ID json.Number `json:"id,Number,omitempty"`
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
Description string `json:"description,omitempty"`
|
|
|
|
CreateDate util.Timestamp `json:"createDate,omitempty"`
|
|
|
|
}
|