jiangshuai
2023-09-20 6becb6b281b34e17197a25af86acd35628e88811
router/router.go
@@ -52,7 +52,7 @@
      warehouseAPI.GET("getWarehouseDetails/:id", warehouseController.GetWarehouseDetails) // 获取仓库详情
   }
   // 作业类型
   // 业务类型
   operationTypeController := new(controllers.OperationTypeController)
   operationTypeAPI := r.Group(urlPrefix + "/operationType")
   {
@@ -70,6 +70,7 @@
      operationAPI.POST("operation", operationController.Add)
      operationAPI.PUT("operation/:id", operationController.Update)
      operationAPI.DELETE("operation/:id", operationController.Delete)
      operationAPI.PUT("Finish/:id", operationController.Finish)
   }
   //产品