repo.go 491 Bytes
Newer Older
hujiebin's avatar
hujiebin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
package msg_m

import (
	"git.hilo.cn/hilo-common/domain"
)

func (msgUserRecord *MsgUserRecord) Persistent() error {
	if err := domain.Persistent(msgUserRecord.Db, msgUserRecord); err != nil {
		return err
	}
	return nil
}

func (msgSysRecord *MsgSysRecord) Persistent() error {
	if err := domain.Persistent(msgSysRecord.Db, msgSysRecord); err != nil {
		return err
	}
	return nil
}

func (msgSysUser *MsgSysUser) Persistent() error {
	return domain.Persistent(msgSysUser.Db, msgSysUser)
}