|
@@ -81,6 +81,14 @@ public class INullyApplyController extends BaseController {
|
|
|
return ok(grid);
|
|
|
}
|
|
|
|
|
|
+ @RequestMapping
|
|
|
+ @ResponseBody
|
|
|
+ public String getExample(String voidFlowInstanceId,Integer isRecover) {
|
|
|
+ Integer status = isRecover == 1 ? VoidTypeEnum.IS_VOID.getStatus() : VoidTypeEnum.NO_VOID.getStatus();
|
|
|
+ INullyApply nullyApplyEntity = iNullyApplyService.findByVoidInstanceId(voidFlowInstanceId, status); //未作废
|
|
|
+ return ok(nullyApplyEntity.getId());
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 新增页面
|
|
|
*
|