repo.go 229 Bytes
Newer Older
hujiebin's avatar
hujiebin committed
1 2 3 4 5 6 7 8 9 10 11
package event_m

import "hilo-user/domain/model"

func (p *EventGiftSendOffsetHiloUser) Persistence() error {
	return model.Persistent(p.Db, p)
}

func (p *EventGiftSend) Persistence() error {
	return model.Persistent(p.Db, p)
}