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) }