overflow_commons_go/modules/domain/model/Domain.go
2017-11-08 18:50:44 +09:00

12 lines
302 B
Go

package model
import (
"git.loafle.net/overflow/overflow_commons_go/modules/timestamp/model"
"encoding/json"
)
type Domain struct {
Id json.Number `json:"id,Number,omitempty"`
Name string `json:"name,omitempty"`
CreateDate timestamp.Timestamp `json:"createDate,omitempty"`
}