| | |
| | | mentorApi.DELETE("deleteMentorInfo/:id", mentorCtl.DeleteMentorInfo) //删除带徒信息 |
| | | } |
| | | |
| | | wpApi := r.Group(urlPrefix + "/workerPosition") |
| | | wpCtl := new(controllers.WorkerPositionController) |
| | | { |
| | | wpApi.POST("createWorkerPositionInfo", wpCtl.CreateWorkerPositionInfo) //创建机台信息 |
| | | wpApi.POST("updateWorkerPositionInfo", wpCtl.UpdateWorkerPositionInfo) //更新机台信息 |
| | | wpApi.POST("getWorkerPositionList", wpCtl.GetWorkerPositionList) //获取机台信息列表 |
| | | wpApi.DELETE("deleteWorkerPositionInfo/:id", wpCtl.DeleteWorkerPositionInfo) //删除机台信息 |
| | | } |
| | | |
| | | return r |
| | | } |