Explorar el Código

审批流修改生成流程图,优化短信模板逻辑

release_toaliyun_real
luozukai hace 7 años
padre
commit
9c4c331ba9
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. +3
    -3
      mallinkAdmin/src/main/java/com/iformall/controller/WxFlowAbleController.java

+ 3
- 3
mallinkAdmin/src/main/java/com/iformall/controller/WxFlowAbleController.java Ver fichero

@@ -81,10 +81,10 @@ public class WxFlowAbleController extends BaseController {
*/
@GetMapping(value = "processDiagram")
@ApiImplicitParams({
@ApiImplicitParam(name = "processInstanceId", value = "流程id", dataType = "String", paramType = "query", required = true)
@ApiImplicitParam(name = "businessId", value = "业务id", dataType = "String", paramType = "query", required = true)
})
public void genProcessDiagram(HttpServletResponse httpServletResponse, String processInstanceId) throws Exception {
wxFlowService.genProcessDiagram(httpServletResponse,processInstanceId);
public void genProcessDiagram(HttpServletResponse httpServletResponse, String businessId) throws Exception {
wxFlowService.genProcessDiagram(httpServletResponse,businessId);
}




Cargando…
Cancelar
Guardar