jiangshuai
2023-11-13 f16252d8b4736a0212b14a2bfb0eeee411d0cc76
router/router.go
@@ -86,6 +86,7 @@
      operationAPI.DELETE("operation/:id", operationController.Delete)
      operationAPI.PUT("finish/:id", operationController.Finish)
      operationAPI.POST("listTransfer", operationController.ListTransfer)
      operationAPI.GET("getLogisticCompanyList", operationController.GetLogisticCompanyList)
   }
@@ -155,5 +156,11 @@
      reorderRuleAPI.POST("orderAgain", reorderRuleController.OrderAgain)                         //再订一次
   }
   attachmentController := new(controllers.AttachmentController)
   attachmentAPI := r.Group(urlPrefix + "/attachment")
   {
      attachmentAPI.POST("uploadFiles", attachmentController.UploadFiles) //上传文件
   }
   return r
}