liujiandao
2023-09-23 ea02a2a9a8219d44b103f0a31cf9fc81ff8495e1
router/router.go
@@ -63,7 +63,7 @@
      locationAPI.DELETE("deleteLocation/:id", locationController.DeleteLocation)      //删除位置
   }
   // 作业类型
   // 业务类型
   operationTypeController := new(controllers.OperationTypeController)
   operationTypeAPI := r.Group(urlPrefix + "/operationType")
   {
@@ -79,8 +79,9 @@
   {
      operationAPI.GET("operation", operationController.List)
      operationAPI.POST("operation", operationController.Add)
      operationAPI.PUT("operation/:id", operationController.Update)
      operationAPI.POST("update", operationController.Update)
      operationAPI.DELETE("operation/:id", operationController.Delete)
      operationAPI.PUT("finish/:id", operationController.Finish)
   }
   //产品