msg.go 331 B

12345678910111213
  1. package service
  2. import (
  3. "go-common/app/job/main/block/conf"
  4. )
  5. // MSGRemoveInfo get msg info
  6. func (s *Service) MSGRemoveInfo() (code string, title, content string) {
  7. code = conf.Conf.Property.MSG.BlockRemove.Code
  8. title = conf.Conf.Property.MSG.BlockRemove.Title
  9. content = conf.Conf.Property.MSG.BlockRemove.Content
  10. return
  11. }