fix: 制修订存null问题

This commit is contained in:
2024-07-11 18:12:31 +08:00
parent e829efc859
commit 4d43789385
@@ -330,6 +330,18 @@ public class ProcessEsRevision implements Serializable {
@ApiModelProperty(value = "自动发起标识")
private boolean autoStartFlag;
public void setOtherDrafterUploadFileJson(String otherDrafterUploadFileJson) {
this.otherDrafterUploadFileJson = otherDrafterUploadFileJson;
}
public void setInspectContentJson(String inspectContentJson) {
this.inspectContentJson = inspectContentJson;
}
public void setReviewMeetingDetailJson(String reviewMeetingDetailJson) {
this.reviewMeetingDetailJson = reviewMeetingDetailJson;
}
public void setOtherDrafterUploadFileJson(List<OtherDraftUserVO> otherDraftUserVOS) {
if (otherDraftUserVOS == null) {