cmd.go 301 B

12345678910111213
  1. package service
  2. import (
  3. "context"
  4. "go-common/app/interface/main/mcn/model/mcnmodel"
  5. )
  6. //CmdReloadRankCache reload cache
  7. func (s *Service) CmdReloadRankCache(c context.Context, arg *mcnmodel.CmdReloadRank) (res *mcnmodel.CommonReply, err error) {
  8. err = s.mcndao.ReloadRank(arg.SignID)
  9. return
  10. }