fix: 制修订存null问题
This commit is contained in:
+9
@@ -332,14 +332,23 @@ public class ProcessEsRevision implements Serializable {
|
|||||||
|
|
||||||
|
|
||||||
public void setOtherDrafterUploadFileJson(List<OtherDraftUserVO> otherDraftUserVOS) {
|
public void setOtherDrafterUploadFileJson(List<OtherDraftUserVO> otherDraftUserVOS) {
|
||||||
|
if (otherDraftUserVOS == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
this.otherDrafterUploadFileJson = JSON.toJSONString(otherDraftUserVOS);
|
this.otherDrafterUploadFileJson = JSON.toJSONString(otherDraftUserVOS);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setInspectContentJson(List<InspectContentVO> inspectContents) {
|
public void setInspectContentJson(List<InspectContentVO> inspectContents) {
|
||||||
|
if (inspectContents == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
this.inspectContentJson = JSON.toJSONString(inspectContents);
|
this.inspectContentJson = JSON.toJSONString(inspectContents);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setReviewMeetingDetailJson(List<ReviewMeetingDetailVO> reviewMeetingDetails) {
|
public void setReviewMeetingDetailJson(List<ReviewMeetingDetailVO> reviewMeetingDetails) {
|
||||||
|
if (reviewMeetingDetails == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
this.reviewMeetingDetailJson = JSON.toJSONString(reviewMeetingDetails);
|
this.reviewMeetingDetailJson = JSON.toJSONString(reviewMeetingDetails);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user