13 lines
388 B
Go
13 lines
388 B
Go
package model
|
|
|
|
import (
|
|
"git.loafle.net/overflow/overflow_commons_go/modules/timestamp/model"
|
|
"encoding/json"
|
|
)
|
|
|
|
type MetaCrawler struct {
|
|
Id json.Number `json:"id,Number,omitempty"`
|
|
Name string `json:"name,omitempty"`
|
|
Description string `json:"description,omitempty"`
|
|
CreateDate timestamp.Timestamp `json:"createDate,omitempty"`
|
|
} |