package com.activiti6.entity; import java.util.Date; public class MyFormDataZip { /** 主键*/ private Long fId; /** 模型key*/ private String modelKey; /** 模型版本*/ private Integer modelVersion; /** 模块id*/ private String modulId; /** 名称*/ private String fName; /** key*/ private String fKey; /** 版本*/ private Long fVersion; /** json数据*/ private Object jsonData; /** 是否可用 0 不可用 1 可用*/ private Integer status; /** 创建人*/ private String createBy; /** 创建时间*/ private Date createTime; /** 更新用户*/ private String updateBy; /** 更新时间*/ private Date updateTime; public Long getfId() { return fId; } public void setfId(Long fId) { this.fId = fId; } public String getModelKey() { return modelKey; } public void setModelKey(String modelKey) { this.modelKey = modelKey; } public Integer getModelVersion() { return modelVersion; } public void setModelVersion(Integer modelVersion) { this.modelVersion = modelVersion; } public String getModulId() { return modulId; } public void setModulId(String modulId) { this.modulId = modulId; } public String getfName() { return fName; } public void setfName(String fName) { this.fName = fName; } public String getfKey() { return fKey; } public void setfKey(String fKey) { this.fKey = fKey; } public Long getfVersion() { return fVersion; } public void setfVersion(Long fVersion) { this.fVersion = fVersion; } public Object getJsonData() { return jsonData; } public void setJsonData(Object jsonData) { this.jsonData = jsonData; } public Integer getStatus() { return status; } public void setStatus(Integer status) { this.status = status; } public String getCreateBy() { return createBy; } public void setCreateBy(String createBy) { this.createBy = createBy; } public Date getCreateTime() { return createTime; } public void setCreateTime(Date createTime) { this.createTime = createTime; } public String getUpdateBy() { return updateBy; } public void setUpdateBy(String updateBy) { this.updateBy = updateBy; } public Date getUpdateTime() { return updateTime; } public void setUpdateTime(Date updateTime) { this.updateTime = updateTime; } }