This commit is contained in:
lik
2026-06-02 12:32:48 +08:00
parent 9758dc2d7b
commit 4bd6f05b01
2 changed files with 21 additions and 0 deletions

View File

@@ -23,6 +23,7 @@ function registerRoutes(app) {
router.post("/escort-record", handlerEscortRecord.createRecord.bind(handlerEscortRecord));
router.put("/escort-record/:id", handlerEscortRecord.updateRecord.bind(handlerEscortRecord));
router.patch("/escort-record/:id/status", handlerEscortRecord.updateStatus.bind(handlerEscortRecord));
router.delete("/escort-record/:id", handlerEscortRecord.deleteRecord.bind(handlerEscortRecord));
router.get("/service", handlerResource.getServices.bind(handlerResource));
router.get("/agreement", handlerResource.getAgreement.bind(handlerResource));