优化案例流程排序提示消息

This commit is contained in:
gy b
2024-01-10 15:02:44 +08:00
parent 6daba6ac21
commit 7f31884b08
5 changed files with 32 additions and 14 deletions
@@ -43,7 +43,7 @@ public class CaseFlowController {
* 删除案件流程节点信息
*/
@PostMapping("/deleteCaseFlow")
public AjaxResult deleteCaseFlow(@RequestBody MsCaseFlowVO caseFlowVO) {
public AjaxResult deleteCaseFlow(@RequestBody MsCaseFlowVO caseFlowVO) throws Exception {
Boolean result = caseFlowService.deleteCaseFlow(caseFlowVO);
return success(result);
}
@@ -52,7 +52,7 @@ public class CaseFlowController {
* 排序案件流程节点
*/
@PostMapping("/sortCaseFlow")
public AjaxResult sortCaseFlow(@RequestBody MsCaseFlowSearchVO caseFlowSearchVO) {
public AjaxResult sortCaseFlow(@RequestBody MsCaseFlowSearchVO caseFlowSearchVO) throws Exception {
Boolean result = caseFlowService.sortCaseFlow(caseFlowSearchVO);
return success(result);
}
@@ -131,7 +131,8 @@ mybatis:
mapperLocations: classpath*:mapper/**/*Mapper.xml
# 加载全局的配置文件
configLocation: classpath:mybatis/mybatis-config.xml
configuration:
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
# PageHelper分页插件
pagehelper:
helperDialect: mysql