作者 yangfu

feat: 增加路由

- 生产历史记录
- 生产记录撤销
... ... @@ -22,6 +22,10 @@ func init() {
web.Post("/v1/manufacture-weigh/product-plans/submit-product-record", middleware.RedirectManufactureWeigh())
// 车间员工
web.Post("/v1/manufacture-weigh/product-groups/employee-signing", middleware.RedirectManufactureWeigh())
// 生产记录撤回
web.Post("/v1/manufacture-weigh/product-records/cancel", middleware.RedirectManufactureWeigh())
// 历史记录
web.Post("/v1/manufacture-weigh/product-records/history", middleware.RedirectManufactureWeigh())
// 车间生产效率
web.Post("/v1/manufacture-weigh/statistics/workshop-production-efficiency-statistics", middleware.RedirectManufactureWeigh())
... ...