feat:完善项目

This commit is contained in:
henry
2021-11-12 11:14:58 +08:00
parent 27e61ed093
commit 413e0ea39c
6 changed files with 50 additions and 5 deletions

View File

@ -156,6 +156,11 @@ func (this *Router) registerAPI() {
manageV1.POST("/material/supplier/select", _api.MaterialSupplierSelect)
manageV1.POST("/material/supplier/bind", _api.MaterialSupplierBind)
manageV1.POST("/material/supplier/delete", _api.MaterialSupplierDelete)
manageV1.POST("/notice", _api.Notice)
manageV1.POST("/notice/detail", _api.NoticeDetail)
manageV1.POST("/notice/add", _api.NoticeAdd)
manageV1.POST("/notice/edit", _api.NoticeEdit)
manageV1.POST("/notice/delete", _api.NoticeEdit)
}
// Work 工单管理
workV1 := v1.Group("/work")