diff --git a/gringotts-web/pom.xml b/gringotts-web/pom.xml
index 5fad3e2..336c82a 100644
--- a/gringotts-web/pom.xml
+++ b/gringotts-web/pom.xml
@@ -12,6 +12,11 @@
gringotts-web
+
+ com.lanyuanxiaoyao
+ flowable
+ 1.0-SNAPSHOT
+
com.eshore
gringotts-configuration
diff --git a/gringotts-web/src/main/java/com/eshore/gringotts/web/domain/base/controller/CheckingController.java b/gringotts-web/src/main/java/com/eshore/gringotts/web/domain/base/controller/CheckingController.java
deleted file mode 100644
index fe4c78c..0000000
--- a/gringotts-web/src/main/java/com/eshore/gringotts/web/domain/base/controller/CheckingController.java
+++ /dev/null
@@ -1,34 +0,0 @@
-package com.eshore.gringotts.web.domain.base.controller;
-
-import com.eshore.gringotts.web.configuration.amis.AmisResponse;
-import com.eshore.gringotts.web.domain.base.entity.CheckingNeededEntity;
-import com.eshore.gringotts.web.domain.base.service.CheckingService;
-import lombok.extern.slf4j.Slf4j;
-import org.springframework.web.bind.annotation.GetMapping;
-import org.springframework.web.bind.annotation.PathVariable;
-
-/**
- * @author wn
- * @version 20241224
- */
-@Slf4j
-public abstract class CheckingController extends SimpleControllerSupport {
- private final CheckingService checkingService;
-
- public CheckingController(CheckingService service) {
- super(service);
- this.checkingService = service;
- }
-
- @GetMapping("/submit/{id}")
- public AmisResponse