去除一个方法
diff --git a/leaveschool/leaving/src/main/java/com/supwisdom/leaveschool/leaving/controller/Api1AuditNodeController.java b/leaveschool/leaving/src/main/java/com/supwisdom/leaveschool/leaving/controller/Api1AuditNodeController.java
index 7086ea3..15c1c7d 100644
--- a/leaveschool/leaving/src/main/java/com/supwisdom/leaveschool/leaving/controller/Api1AuditNodeController.java
+++ b/leaveschool/leaving/src/main/java/com/supwisdom/leaveschool/leaving/controller/Api1AuditNodeController.java
@@ -4,7 +4,6 @@
import org.springframework.http.HttpStatus;
import org.springframework.util.MimeTypeUtils;
import org.springframework.web.bind.annotation.GetMapping;
-import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseStatus;
import org.springframework.web.bind.annotation.RestController;
@@ -12,7 +11,6 @@
import com.supwisdom.leaveschool.common.controller.api.CrudApiController;
import com.supwisdom.leaveschool.common.model.PagerRequestModel;
import com.supwisdom.leaveschool.common.model.PagerResponseModel;
-import com.supwisdom.leaveschool.common.model.SuccessResponseModel;
import com.supwisdom.leaveschool.leaving.domain.AuditNode;
import com.supwisdom.leaveschool.leaving.repository.AuditNodeRepository;
@@ -50,17 +48,6 @@
}
}
- @PostMapping(path = "/insert",produces = MimeTypeUtils.APPLICATION_JSON_VALUE,consumes=MimeTypeUtils.APPLICATION_JSON_VALUE)
- @ResponseStatus(value = HttpStatus.OK)
- @ApiOperation(value="新增审核环节",notes="注意问题点")
- public SuccessResponseModel insert(AuditNode auditNode) {
-
- return null;
- }
-
-
-
-
@GetMapping(path = "/pageList",produces = MimeTypeUtils.APPLICATION_JSON_VALUE)
@ResponseStatus(value = HttpStatus.OK)
@ApiOperation(value="根据查询条件获取审核环节列表",notes="注意问题点")