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

import "hilo-group/domain/model"

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

func (p *EventGiftSend) Persistence() error {
	return model.Persistent(p.Db, p)
}
hujiebin's avatar
hujiebin committed
12 13 14 15

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