提交 e5085e96 编写于 作者: O o2sword

签批2

上级 2452d378
......@@ -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("提交时间.")
......
......@@ -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<String> inputList = new ArrayList<>();
private List<String> scrawlList = new ArrayList<>();
public Data getData() {
return data;
}
......@@ -28,6 +35,19 @@ public class DocSignProperties extends JsonProperties {
this.title = title;
}
public List<String> getInputList() {
return inputList;
}
public void setInputList(List<String> inputList) {
this.inputList = inputList;
}
public List<String> getScrawlList() {
return scrawlList;
}
public void setScrawlList(List<String> scrawlList) {
this.scrawlList = scrawlList;
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册