MyFormDataZip.java 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. package com.activiti6.entity;
  2. import java.util.Date;
  3. public class MyFormDataZip {
  4. /** 主键*/
  5. private Long fId;
  6. /** 模型key*/
  7. private String modelKey;
  8. /** 模型版本*/
  9. private Integer modelVersion;
  10. /** 模块id*/
  11. private String modulId;
  12. /** 名称*/
  13. private String fName;
  14. /** key*/
  15. private String fKey;
  16. /** 版本*/
  17. private Long fVersion;
  18. /** json数据*/
  19. private Object jsonData;
  20. /** 是否可用 0 不可用 1 可用*/
  21. private Integer status;
  22. /** 创建人*/
  23. private String createBy;
  24. /** 创建时间*/
  25. private Date createTime;
  26. /** 更新用户*/
  27. private String updateBy;
  28. /** 更新时间*/
  29. private Date updateTime;
  30. public Long getfId() {
  31. return fId;
  32. }
  33. public void setfId(Long fId) {
  34. this.fId = fId;
  35. }
  36. public String getModelKey() {
  37. return modelKey;
  38. }
  39. public void setModelKey(String modelKey) {
  40. this.modelKey = modelKey;
  41. }
  42. public Integer getModelVersion() {
  43. return modelVersion;
  44. }
  45. public void setModelVersion(Integer modelVersion) {
  46. this.modelVersion = modelVersion;
  47. }
  48. public String getModulId() {
  49. return modulId;
  50. }
  51. public void setModulId(String modulId) {
  52. this.modulId = modulId;
  53. }
  54. public String getfName() {
  55. return fName;
  56. }
  57. public void setfName(String fName) {
  58. this.fName = fName;
  59. }
  60. public String getfKey() {
  61. return fKey;
  62. }
  63. public void setfKey(String fKey) {
  64. this.fKey = fKey;
  65. }
  66. public Long getfVersion() {
  67. return fVersion;
  68. }
  69. public void setfVersion(Long fVersion) {
  70. this.fVersion = fVersion;
  71. }
  72. public Object getJsonData() {
  73. return jsonData;
  74. }
  75. public void setJsonData(Object jsonData) {
  76. this.jsonData = jsonData;
  77. }
  78. public Integer getStatus() {
  79. return status;
  80. }
  81. public void setStatus(Integer status) {
  82. this.status = status;
  83. }
  84. public String getCreateBy() {
  85. return createBy;
  86. }
  87. public void setCreateBy(String createBy) {
  88. this.createBy = createBy;
  89. }
  90. public Date getCreateTime() {
  91. return createTime;
  92. }
  93. public void setCreateTime(Date createTime) {
  94. this.createTime = createTime;
  95. }
  96. public String getUpdateBy() {
  97. return updateBy;
  98. }
  99. public void setUpdateBy(String updateBy) {
  100. this.updateBy = updateBy;
  101. }
  102. public Date getUpdateTime() {
  103. return updateTime;
  104. }
  105. public void setUpdateTime(Date updateTime) {
  106. this.updateTime = updateTime;
  107. }
  108. }