commons-go/model/meta/MetaCrawler.go

17 lines
397 B
Go
Raw Normal View History

2018-04-26 07:37:59 +00:00
package meta
2018-04-12 09:38:04 +00:00
import (
"encoding/json"
"git.loafle.net/overflow/commons-go/core/util"
)
type MetaCrawler struct {
2018-06-05 09:08:52 +00:00
ID json.Number `json:"id,Number,omitempty"`
Name string `json:"name,omitempty"`
2018-06-12 09:18:11 +00:00
Key string `json:"key,omitempty"`
IsDefault bool `json:"isDefault, omitempty"`
2018-06-05 09:08:52 +00:00
CreateDate *util.Timestamp `json:"createDate,omitempty"`
2018-06-12 09:18:11 +00:00
2018-04-12 09:38:04 +00:00
}