MyProcessDefinition.java 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. package com.ruoyi.project.activiti.domain;
  2. import com.ruoyi.framework.aspectj.lang.annotation.DataSource;
  3. import java.io.Serializable;
  4. import java.util.Date;
  5. public class MyProcessDefinition implements Serializable {
  6. private static final long serialVersionUID = 1L;
  7. private String id;
  8. /**
  9. * 流程id
  10. */
  11. private String processId;
  12. /**
  13. * 流程名称
  14. */
  15. private String name;
  16. /**
  17. * 流程KEY
  18. */
  19. private String key;
  20. /**
  21. * 流程版本
  22. */
  23. private int version;
  24. /**
  25. * 所属分类
  26. */
  27. private String category;
  28. /**
  29. * 流程描述
  30. */
  31. private String description;
  32. private String deploymentId;
  33. /**
  34. * 部署时间
  35. */
  36. private Date deploymentTime;
  37. public String getProcessId() {
  38. return processId;
  39. }
  40. public void setProcessId(String processId) {
  41. this.processId = processId;
  42. }
  43. public String getId() {
  44. return id;
  45. }
  46. public void setId(String id) {
  47. this.id = id;
  48. }
  49. public String getKey() {
  50. return key;
  51. }
  52. public void setKey(String key) {
  53. this.key = key;
  54. }
  55. public String getName() {
  56. return name;
  57. }
  58. public void setName(String name) {
  59. this.name = name;
  60. }
  61. public String getCategory() {
  62. return category;
  63. }
  64. public void setCategory(String category) {
  65. this.category = category;
  66. }
  67. public int getVersion() {
  68. return version;
  69. }
  70. public void setVersion(int version) {
  71. this.version = version;
  72. }
  73. public String getDescription() {
  74. return description;
  75. }
  76. public void setDescription(String description) {
  77. this.description = description;
  78. }
  79. public String getDeploymentId() {
  80. return deploymentId;
  81. }
  82. public void setDeploymentId(String deploymentId) {
  83. this.deploymentId = deploymentId;
  84. }
  85. public Date getDeploymentTime() {
  86. return deploymentTime;
  87. }
  88. public void setDeploymentTime(Date deploymentTime) {
  89. this.deploymentTime = deploymentTime;
  90. }
  91. }