14 lines
289 B
Go
14 lines
289 B
Go
package model
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
util "git.loafle.net/overflow/overflow_commons_go/util"
|
|
)
|
|
|
|
type Domain struct {
|
|
ID json.Number `json:"id,Number,omitempty"`
|
|
Name string `json:"name,omitempty"`
|
|
CreateDate util.Timestamp `json:"createDate,omitempty"`
|
|
}
|