get_erp_mkt_active_handler.go 497 B

12345678910111213141516171819202122
  1. package mkt_active
  2. import (
  3. "net/http"
  4. "git.i2edu.net/i2/go-zero/rest/httpx"
  5. "git.i2edu.net/i2/i2-bill-api/internal/logic/mkt_active"
  6. "git.i2edu.net/i2/i2-bill-api/internal/svc"
  7. )
  8. func GetErpMktActiveHandler(ctx *svc.ServiceContext) http.HandlerFunc {
  9. return func(w http.ResponseWriter, r *http.Request) {
  10. l := mkt_active.NewGetErpMktActiveLogic(r.Context(), ctx)
  11. resp, err := l.GetErpMktActive(r)
  12. if err != nil {
  13. httpx.Error(w, err)
  14. } else {
  15. httpx.OkJson(w, resp)
  16. }
  17. }
  18. }