mirror of
https://gitee.com/dromara/RuoYi-Vue-Plus.git
synced 2026-09-19 01:48:47 +08:00
update 调整流程xml查询
This commit is contained in:
parent
49112f43aa
commit
ccf28de33d
@ -168,7 +168,7 @@ public class FlwDefinitionController extends BaseController {
|
|||||||
*/
|
*/
|
||||||
@GetMapping("/xmlString/{id}")
|
@GetMapping("/xmlString/{id}")
|
||||||
public R<String> xmlString(@PathVariable Long id) {
|
public R<String> xmlString(@PathVariable Long id) {
|
||||||
return R.ok(defService.xmlString(id));
|
return R.ok("操作成功", defService.xmlString(id));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -179,7 +179,7 @@ public class FlwDefinitionController extends BaseController {
|
|||||||
*/
|
*/
|
||||||
@GetMapping("/flowChart/{instanceId}")
|
@GetMapping("/flowChart/{instanceId}")
|
||||||
public R<String> flowChart(@PathVariable Long instanceId) throws IOException {
|
public R<String> flowChart(@PathVariable Long instanceId) throws IOException {
|
||||||
return R.ok(defService.flowChart(instanceId));
|
return R.ok("操作成功", defService.flowChart(instanceId));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -1,6 +1,5 @@
|
|||||||
package org.dromara.workflow.service;
|
package org.dromara.workflow.service;
|
||||||
|
|
||||||
import com.warm.flow.core.entity.Definition;
|
|
||||||
import com.warm.flow.orm.entity.FlowDefinition;
|
import com.warm.flow.orm.entity.FlowDefinition;
|
||||||
import jakarta.servlet.http.HttpServletResponse;
|
import jakarta.servlet.http.HttpServletResponse;
|
||||||
import org.dromara.common.mybatis.core.page.PageQuery;
|
import org.dromara.common.mybatis.core.page.PageQuery;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user