21 lines
473 B
Go
21 lines
473 B
Go
package crawlerInputItem
|
|
|
|
import (
|
|
"git.loafle.net/overflow/commons_go/model/timestamp"
|
|
"encoding/json"
|
|
)
|
|
|
|
type CrawlerInputItem struct {
|
|
Id json.Number `json:"id,Number,omitempty"`
|
|
Name string `json:"name,omitempty"`
|
|
DataType string `json:"dataType,omitempty"`
|
|
CreateDate timestamp.Timestamp `json:"createDate,omitempty"`
|
|
}
|
|
|
|
type CrawlerInputItemSerivce struct {
|
|
|
|
}
|
|
|
|
func NewCrawlerInputItemService() *CrawlerInputItemSerivce {
|
|
return &CrawlerInputItemSerivce{}
|
|
} |