flowable实战(六)flowable的意见表和附件表应用
生活随笔
收集整理的這篇文章主要介紹了
flowable实战(六)flowable的意见表和附件表应用
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
一、act_hi_comment和act_hi_attachment兩表表,前者意見表后者是附件表
意見表它里面有一個(gè)類型type字段,分別是comment代表意見(這個(gè)type可以自定義,例如自定義為:通過/退回/提前終止),缺省提供了comment,event是事件,當(dāng)你給附件表增加記錄時(shí),它就會(huì)在意見表同時(shí)增加多少條記錄,并且type的類型為event。所以取意見時(shí),需要注意這個(gè)問題。
(一)act_hi_comment提供了以下方法:
/** Add a comment to a task and/or process instance. */ Comment addComment(String taskId, String processInstanceId, String message);/** Add a comment to a task and/or process instance with a custom type. */ Comment addComment(String taskId, String processInstanceId, String type, String message);/** Update a comment to a task and/or process instance. */ void saveComment(Comment comment);/*** Returns an individual comment with the given id. Returns null if no comment exists with the given id.*/ Comment getComment(String commentId);/** Removes all comments from the provided task and/or process instance */ void deleteComments(String taskId, String processInstanceId);/*** Removes an individual comment with the given id.* * @throws FlowableObjectNotFoundException* when no comment exists with the given id.*/ void deleteComment(String commentId);/** The comments related to the given task. */ List<Comment> getTaskComments(String taskId);/** The comments related to the given task of the given type. */ List<Comment> getTaskComments(String taskId, String type);/** All comments of a given type. */ List<Comment> getCommentsByType(String type);/** The all events related to the given task. */ List<Event> getTaskEvents(String taskId);/*** Returns an individual event with the given id. Returns null if no event exists with the given id.*/ Event getEvent(String eventId);/** The comments related to the given process instance. */ List<Comment> getProcessInstanceComments(String processInstanceId);/** The comments related to the given process instance. */ List<Comment> getProcessInstanceComments(String processInstanceId, String type);(三)真實(shí)應(yīng)用:
總結(jié)
以上是生活随笔為你收集整理的flowable实战(六)flowable的意见表和附件表应用的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 使用Spring Boot打造文件文档在
- 下一篇: (vue基础试炼_07)Vue实例生命周