|
@@ -0,0 +1,71 @@
|
|
|
+package org.jeecg.modules.activiti.entity;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
|
+import lombok.Data;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+@Data
|
|
|
+public class TbTableInfoPractice {
|
|
|
+ @TableId(type= IdType.UUID)
|
|
|
+ private String id;
|
|
|
+ //表名
|
|
|
+ private String businessTable;
|
|
|
+ //表单名
|
|
|
+ private String text;
|
|
|
+ //json => String
|
|
|
+ @JsonIgnore
|
|
|
+ private String content;
|
|
|
+ //修改人
|
|
|
+ private String updateBy;
|
|
|
+ //修改时间
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ private Date updateTime;
|
|
|
+ //创建时间
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ private Date createTime;
|
|
|
+ //创建人
|
|
|
+ private String createBy;
|
|
|
+ //组织
|
|
|
+ private String pkOrg;
|
|
|
+ private String routeName;
|
|
|
+
|
|
|
+ //步骤描述
|
|
|
+ private String stepMemo;
|
|
|
+ //流程id
|
|
|
+ private String processId;
|
|
|
+ //流程任务节点id
|
|
|
+ private String taskNodeId;
|
|
|
+
|
|
|
+ private String delFlag;
|
|
|
+ //是否初始表单0否1是
|
|
|
+ private String isInitial;
|
|
|
+ //业务表id(外键)
|
|
|
+ private String businessTableId;
|
|
|
+
|
|
|
+
|
|
|
+ public TbTableInfoPractice() {
|
|
|
+ }
|
|
|
+
|
|
|
+ public TbTableInfoPractice(String id, String businessTable, String text, String content,
|
|
|
+ String pkOrg, String routeName, String stepMemo, String processId, String taskNodeId,
|
|
|
+ String isInitial, String businessTableId) {
|
|
|
+ this.id = id;
|
|
|
+ this.businessTable = businessTable;
|
|
|
+ this.text = text;
|
|
|
+ this.content = content;
|
|
|
+ this.pkOrg = pkOrg;
|
|
|
+ this.routeName = routeName;
|
|
|
+ this.stepMemo = stepMemo;
|
|
|
+ this.processId = processId;
|
|
|
+ this.taskNodeId = taskNodeId;
|
|
|
+ this.isInitial = isInitial;
|
|
|
+ this.businessTableId = businessTableId;
|
|
|
+ }
|
|
|
+}
|