pasture_api.go 1.1 KB

12345678910111213141516171819202122232425262728
  1. package route
  2. import (
  3. "kpt-pasture/http/handler/pasture"
  4. "github.com/gin-gonic/gin"
  5. )
  6. func PastureManageAPI(opts ...func(engine *gin.Engine)) func(s *gin.Engine) {
  7. return func(s *gin.Engine) {
  8. for _, opt := range opts {
  9. opt(s)
  10. }
  11. // pasture API 组 牧场管理
  12. pastureRoute := authRouteGroup(s, "/api/v1/pasture/")
  13. pastureRoute.POST("/barn/list", pasture.SearchBarnList)
  14. pastureRoute.POST("/barn/createOrUpdate", pasture.CreatedOrUpdateBarn)
  15. pastureRoute.POST("/barn/type/list", pasture.SearchBarnTypeList)
  16. pastureRoute.POST("/barn/type/createOrUpdate", pasture.CreatedOrUpdateBarnType)
  17. pastureRoute.POST("/breed/status/list", pasture.SearchBreedStatusList)
  18. pastureRoute.POST("/breed/status/createOrUpdate", pasture.CreatedOrUpdateBreedStatus)
  19. pastureRoute.POST("/cow/kind/list", pasture.SearchCowKindList)
  20. pastureRoute.POST("/cow/kind/createOrUpdate", pasture.CreatedOrUpdateCowKind)
  21. pastureRoute.POST("/cow/status/list", pasture.SearchCowStatusList)
  22. pastureRoute.POST("/cow/status/createOrUpdate", pasture.CreatedOrUpdateCowStatus)
  23. }
  24. }