go-common/app/job/main/block/service/msg.go
2019-04-22 18:49:16 +08:00

14 lines
331 B
Go

package service
import (
"go-common/app/job/main/block/conf"
)
// MSGRemoveInfo get msg info
func (s *Service) MSGRemoveInfo() (code string, title, content string) {
code = conf.Conf.Property.MSG.BlockRemove.Code
title = conf.Conf.Property.MSG.BlockRemove.Title
content = conf.Conf.Property.MSG.BlockRemove.Content
return
}