From e5085e9612a6d7cf993ecf50a7c46fae763a7fc7 Mon Sep 17 00:00:00 2001 From: o2sword <171715986@qq.com> Date: Wed, 2 Mar 2022 14:05:58 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AD=BE=E6=89=B92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../core/entity/content/DocSign.java | 12 +++++++++++ .../entity/content/DocSignProperties.java | 20 +++++++++++++++++++ 2 files changed, 32 insertions(+) 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 d9a40d7046..83c0b5b5dd 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 33f0682bba..2437ea6cd0 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; + } } -- GitLab