update
parent
e761516c02
commit
199705b555
|
@ -26,6 +26,10 @@ func getBase() *History {
|
||||||
return h
|
return h
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (h *History) Nm(name string) *History {
|
||||||
|
h.Name = name
|
||||||
|
return h
|
||||||
|
}
|
||||||
func (h *History) Msg(msg string) *History {
|
func (h *History) Msg(msg string) *History {
|
||||||
h.Message = msg
|
h.Message = msg
|
||||||
return h
|
return h
|
||||||
|
|
|
@ -26,6 +26,7 @@ type History struct {
|
||||||
Caller string
|
Caller string
|
||||||
Trace string
|
Trace string
|
||||||
|
|
||||||
|
Name string
|
||||||
Message string
|
Message string
|
||||||
Body interface{} `gorm:"-"`
|
Body interface{} `gorm:"-"`
|
||||||
Issuer string
|
Issuer string
|
||||||
|
|
Loading…
Reference in New Issue