fix: 制修订存null问题

This commit is contained in:
2024-07-11 17:24:25 +08:00
parent c041ca414c
commit e829efc859
@@ -332,14 +332,23 @@ public class ProcessEsRevision implements Serializable {
public void setOtherDrafterUploadFileJson(List<OtherDraftUserVO> otherDraftUserVOS) {
if (otherDraftUserVOS == null) {
return;
}
this.otherDrafterUploadFileJson = JSON.toJSONString(otherDraftUserVOS);
}
public void setInspectContentJson(List<InspectContentVO> inspectContents) {
if (inspectContents == null) {
return;
}
this.inspectContentJson = JSON.toJSONString(inspectContents);
}
public void setReviewMeetingDetailJson(List<ReviewMeetingDetailVO> reviewMeetingDetails) {
if (reviewMeetingDetails == null) {
return;
}
this.reviewMeetingDetailJson = JSON.toJSONString(reviewMeetingDetails);
}