notice.go 282 B

12345678910111213
  1. package operation
  2. import (
  3. "context"
  4. opmdl "go-common/app/interface/main/web-show/model/operation"
  5. )
  6. // Notice Service
  7. func (s *Service) Notice(c context.Context, arg *opmdl.ArgOp) (res map[string][]*opmdl.Operation) {
  8. res = s.operation(arg.Tp, arg.Rank, arg.Count)
  9. return
  10. }