日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

flowable实战(六)flowable的意见表和附件表应用

發(fā)布時(shí)間:2024/9/27 编程问答 34 豆豆
生活随笔 收集整理的這篇文章主要介紹了 flowable实战(六)flowable的意见表和附件表应用 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

一、act_hi_comment和act_hi_attachment兩表表,前者意見(jiàn)表后者是附件表

意見(jiàn)表它里面有一個(gè)類型type字段,分別是comment代表意見(jiàn)(這個(gè)type可以自定義,例如自定義為:通過(guò)/退回/提前終止),缺省提供了comment,event是事件,當(dāng)你給附件表增加記錄時(shí),它就會(huì)在意見(jiàn)表同時(shí)增加多少條記錄,并且type的類型為event。所以取意見(jiàn)時(shí),需要注意這個(gè)問(wèn)題。

(一)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)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。