feat:完善项目

This commit is contained in:
henry
2021-11-11 17:10:43 +08:00
parent 3b09ec1efc
commit 27e61ed093
8 changed files with 396 additions and 3 deletions

View File

@ -171,6 +171,11 @@ func (this *Router) registerAPI() {
workV1.GET("/schedule", _api.Schedule)
workV1.POST("/schedule/edit", _api.ScheduleEdit)
workV1.POST("/schedule/delete", _api.ScheduleDelete)
workV1.POST("/repair", _api.Repair)
workV1.POST("/repair/detail", _api.RepairDetail)
workV1.POST("/repair/begin", _api.RepairBegin)
workV1.POST("/repair/finish", _api.RepairFinish)
workV1.POST("/repair/evaluate", _api.RepairEvaluate)
}
}