diff --git a/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/DocSign.java b/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/DocSign.java index d9a40d70466a5ce649a0a0fb07b13186cf1ee3d6..83c0b5b5ddf4ebeec9f0f9ff5c07e74211c72a24 100644 --- a/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/DocSign.java +++ b/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/DocSign.java @@ -141,6 +141,18 @@ public class DocSign extends SliceJpaObject { @CheckPersist(allowEmpty = false) private String person; + public static final String signPicAttId_FIELDNAME = "signPicAttId"; + @FieldDescribe("正文签批转存为图片的ID.") + @Column(length = JpaObject.length_id, name = ColumnNamePrefix + signPicAttId_FIELDNAME) + @CheckPersist(allowEmpty = true) + private String signPicAttId; + + public static final String status_FIELDNAME = "status"; + @FieldDescribe("状态:1(暂存)|2(签批正文不可以修改)|3(签批正文可以修改).") + @Column(length = JpaObject.length_id, name = ColumnNamePrefix + status_FIELDNAME) + @CheckPersist(allowEmpty = false) + private Integer status; + public static final String commitTime_FIELDNAME = "commitTime"; @Temporal(TemporalType.TIME) @FieldDescribe("提交时间.") diff --git a/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/DocSignProperties.java b/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/DocSignProperties.java index 33f0682bba662c4417f59b8c0c21f128a4a973b3..2437ea6cd07bd923c8c15e4e72ed908d08d45a39 100644 --- a/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/DocSignProperties.java +++ b/o2server/x_processplatform_core_entity/src/main/java/com/x/processplatform/core/entity/content/DocSignProperties.java @@ -2,6 +2,9 @@ package com.x.processplatform.core.entity.content; import com.x.base.core.entity.JsonProperties; +import java.util.ArrayList; +import java.util.List; + /** * 文件签批扩展信息 * @author sword @@ -12,6 +15,10 @@ public class DocSignProperties extends JsonProperties { private String title; + private List inputList = new ArrayList<>(); + + private List scrawlList = new ArrayList<>(); + public Data getData() { return data; } @@ -28,6 +35,19 @@ public class DocSignProperties extends JsonProperties { this.title = title; } + public List getInputList() { + return inputList; + } + + public void setInputList(List inputList) { + this.inputList = inputList; + } + public List getScrawlList() { + return scrawlList; + } + public void setScrawlList(List scrawlList) { + this.scrawlList = scrawlList; + } }