调试mk
This commit is contained in:
+12
@@ -38,6 +38,7 @@ public interface IBusinessProcessClient {
|
||||
String QUERY_TODO_LIST = API_PREFIX + "/queryTodoList";
|
||||
String QUERY_BUSINESS_PROCESS_SNAPSHOT = API_PREFIX + "/queryBusinessProcessSnapshot";
|
||||
String QUERY_APPROVED_RECORD_LIST = API_PREFIX + "/queryApprovedRecordsNoAttachments";
|
||||
String GET_CURRENT_NODES = API_PREFIX + "/getCurrentNodes";
|
||||
|
||||
/**
|
||||
* 提交业务流程
|
||||
@@ -102,4 +103,15 @@ public interface IBusinessProcessClient {
|
||||
*/
|
||||
@GetMapping(QUERY_APPROVED_RECORD_LIST)
|
||||
FR<List<ProcessApprovedRecordVO>> queryApprovedRecordsNoAttachments(@RequestParam(name = "bizId", required = false) String bizId, @RequestParam(name = "processInstanceId", required = false) String processInstanceId);
|
||||
|
||||
/**
|
||||
* 获取流程当前节点详情
|
||||
*
|
||||
* @param processInstanceId 流程实例id
|
||||
* @param loginName MK登录名(手机号)
|
||||
* @return 当前节点详情
|
||||
*/
|
||||
@GetMapping(GET_CURRENT_NODES)
|
||||
FR<Object> getCurrentNodes(@RequestParam("processInstanceId") String processInstanceId,
|
||||
@RequestParam(value = "loginName", required = false) String loginName);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user